42 lines
853 B
Nix
42 lines
853 B
Nix
{ stdenv, fetchFromGitLab, buildGoPackage, ruby, bundlerEnv }:
|
|
|
|
let
|
|
rubyEnv = bundlerEnv {
|
|
name = "gitaly-env";
|
|
inherit ruby;
|
|
gemdir = ./.;
|
|
};
|
|
in buildGoPackage rec {
|
|
version = "0.100.0";
|
|
name = "gitaly-${version}";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "gitlab-org";
|
|
repo = "gitaly";
|
|
rev = "v${version}";
|
|
sha256 = "0lnyk3abk1jxhii4cx009w11fm082c3va0nnnnycghrmfkv2r1rs";
|
|
};
|
|
|
|
goPackagePath = "gitlab.com/gitlab-org/gitaly";
|
|
|
|
passthru = {
|
|
inherit rubyEnv;
|
|
};
|
|
|
|
buildInputs = [rubyEnv.wrappedRuby];
|
|
|
|
postInstall = ''
|
|
mkdir -p $ruby
|
|
cp -rv $src/ruby/{bin,lib,vendor} $ruby
|
|
'';
|
|
|
|
outputs = [ "bin" "out" "ruby" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.gitlab.com/;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ roblabla ];
|
|
license = licenses.mit;
|
|
};
|
|
}
|