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-01-15 08:06:39 -08:00
version = "1.2.1";
name = "gitlab-workhorse-${version}";
srcs = fetchFromGitLab {
owner = "gitlab-org";
repo = "gitlab-workhorse";
rev = "v${version}";
2017-01-15 08:06:39 -08:00
sha256 = "1z4iyymld3pssf1dwar0hy6c5hii79gk4k59mqj0mgy2k73405y0";
};
buildInputs = [ git go ];
patches = [ ./remove-hardcoded-paths.patch ];
buildPhase = ''
make PREFIX=$out
'';
installPhase = ''
mkdir -p $out/bin
make install PREFIX=$out
'';
2016-09-27 06:49:21 -07:00
meta = with stdenv.lib; {
homepage = http://www.gitlab.com/;
platforms = platforms.unix;
maintainers = with maintainers; [ fpletz ];
license = licenses.mit;
};
}