3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/version-management/gitlab/gitlab-workhorse/default.nix

28 lines
636 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitLab, git, go }:
2018-10-23 11:23:29 +01:00
stdenv.mkDerivation rec {
name = "gitlab-workhorse-${version}";
2018-10-23 11:23:29 +01:00
version = "7.0.0";
2018-09-21 08:31:30 +01:00
srcs = fetchFromGitLab {
owner = "gitlab-org";
repo = "gitlab-workhorse";
rev = "v${version}";
2018-10-23 11:23:29 +01:00
sha256 = "1mmfb7h5sbva2kv9h9cxfg7dyksxrwwikq7jwggfawqaadzwm677";
};
buildInputs = [ git go ];
patches = [ ./remove-hardcoded-paths.patch ];
2018-09-25 01:06:08 +01:00
makeFlags = [ "PREFIX=$(out)" "VERSION=${version}" ];
2016-09-27 14:49:21 +01:00
meta = with stdenv.lib; {
homepage = http://www.gitlab.com/;
platforms = platforms.unix;
2018-04-25 18:56:45 +01:00
maintainers = with maintainers; [ fpletz globin ];
2016-09-27 14:49:21 +01:00
license = licenses.mit;
};
}