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 12:23:29 +02:00
stdenv.mkDerivation rec {
name = "gitlab-workhorse-${version}";
version = "8.7.0";
2018-09-21 09:31:30 +02:00
src = fetchFromGitLab {
owner = "gitlab-org";
repo = "gitlab-workhorse";
rev = "v${version}";
sha256 = "1zlngc498hnzbxwdjn3ymr0xwrnfgnzzhn9lyf37yfbjl8x28n3z";
};
buildInputs = [ git go ];
2019-02-28 02:46:32 +01:00
makeFlags = [ "PREFIX=$(out)" "VERSION=${version}" "GOCACHE=$(TMPDIR)/go-cache" ];
2016-09-27 15:49:21 +02:00
meta = with stdenv.lib; {
homepage = http://www.gitlab.com/;
platforms = platforms.unix;
2018-04-25 19:56:45 +02:00
maintainers = with maintainers; [ fpletz globin ];
2016-09-27 15:49:21 +02:00
license = licenses.mit;
};
}