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

26 lines
615 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}";
version = "8.7.0";
2018-09-21 08:31:30 +01:00
src = fetchFromGitLab {
owner = "gitlab-org";
repo = "gitlab-workhorse";
rev = "v${version}";
sha256 = "1zlngc498hnzbxwdjn3ymr0xwrnfgnzzhn9lyf37yfbjl8x28n3z";
};
buildInputs = [ git go ];
2019-02-28 01:46:32 +00:00
makeFlags = [ "PREFIX=$(out)" "VERSION=${version}" "GOCACHE=$(TMPDIR)/go-cache" ];
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;
};
}