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

34 lines
695 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitLab, git, go }:
stdenv.mkDerivation rec {
2018-01-07 04:59:01 +01:00
version = "3.3.1";
name = "gitlab-workhorse-${version}";
srcs = fetchFromGitLab {
owner = "gitlab-org";
repo = "gitlab-workhorse";
rev = "v${version}";
2018-01-07 04:59:01 +01:00
sha256 = "19x9ryp99xygj39kq2r756rahh9mxp6j83hxvv09y33vgz64y8xh";
};
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;
};
}