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

28 lines
635 B
Nix
Raw Normal View History

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