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