nixpkgs/pkgs/applications/version-management/gitlab-workhorse/default.nix

34 lines
695 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitLab, git, go }:
stdenv.mkDerivation rec {
2017-11-06 20:39:03 +01:00
version = "3.2.0";
name = "gitlab-workhorse-${version}";
srcs = fetchFromGitLab {
owner = "gitlab-org";
repo = "gitlab-workhorse";
rev = "v${version}";
2017-11-06 20:39:03 +01:00
sha256 = "1ivqlhvmxhdb8359yh469zl45j00n94b53naqi8jx06kijfsdz4r";
};
buildInputs = [ git go ];
patches = [ ./remove-hardcoded-paths.patch ];
buildPhase = ''
make PREFIX=$out
'';
installPhase = ''
mkdir -p $out/bin
make install PREFIX=$out
'';
2016-09-27 15:49:21 +02:00
meta = with stdenv.lib; {
homepage = http://www.gitlab.com/;
platforms = platforms.unix;
maintainers = with maintainers; [ fpletz ];
license = licenses.mit;
};
}