2021-01-25 09:26:54 +01:00
|
|
|
{ lib, fetchFromGitLab, fetchFromGitHub, buildGoModule, ruby
|
2021-01-19 07:50:56 +01:00
|
|
|
, bundlerEnv, pkg-config
|
2020-11-24 21:56:11 +01:00
|
|
|
# libgit2 + dependencies
|
|
|
|
, libgit2, openssl, zlib, pcre, http-parser }:
|
2017-07-05 23:53:31 +02:00
|
|
|
|
2017-09-03 15:38:28 +02:00
|
|
|
let
|
2020-12-26 22:06:22 +01:00
|
|
|
# libgit2 was updated to 1.1.0 in nixpkgs, but gitlab doesn't support that yet.
|
|
|
|
# See https://github.com/NixOS/nixpkgs/pull/106909
|
|
|
|
libgit = libgit2.overrideAttrs (attrs: rec {
|
|
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "libgit2";
|
|
|
|
repo = "libgit2";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "06cwrw93ycpfb5kisnsa5nsy95pm11dbh0vvdjg1jn25h9q5d3vc";
|
|
|
|
};
|
|
|
|
});
|
|
|
|
|
2019-07-10 02:09:15 +02:00
|
|
|
rubyEnv = bundlerEnv rec {
|
2017-09-03 15:38:28 +02:00
|
|
|
name = "gitaly-env";
|
|
|
|
inherit ruby;
|
2020-03-03 20:13:49 +01:00
|
|
|
copyGemFiles = true;
|
2017-09-03 15:38:28 +02:00
|
|
|
gemdir = ./.;
|
2019-07-10 02:09:15 +02:00
|
|
|
gemset =
|
2019-07-16 03:29:57 +02:00
|
|
|
let x = import (gemdir + "/gemset.nix");
|
2019-07-10 02:09:15 +02:00
|
|
|
in x // {
|
|
|
|
# grpc expects the AR environment variable to contain `ar rpc`. See the
|
|
|
|
# discussion in nixpkgs #63056.
|
|
|
|
grpc = x.grpc // {
|
|
|
|
patches = [ ../fix-grpc-ar.patch ];
|
|
|
|
dontBuild = false;
|
|
|
|
};
|
|
|
|
};
|
2017-09-03 15:38:28 +02:00
|
|
|
};
|
2020-11-26 13:41:18 +01:00
|
|
|
in buildGoModule rec {
|
2021-01-29 21:13:59 +01:00
|
|
|
version = "13.7.4";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "gitaly";
|
2017-07-05 23:53:31 +02:00
|
|
|
|
2017-09-03 15:38:28 +02:00
|
|
|
src = fetchFromGitLab {
|
2017-07-05 23:53:31 +02:00
|
|
|
owner = "gitlab-org";
|
|
|
|
repo = "gitaly";
|
2020-01-13 21:49:18 +01:00
|
|
|
rev = "v${version}";
|
2021-01-29 21:13:59 +01:00
|
|
|
sha256 = "1inb7xlv8admzy9q1bgxccbrhks0mmc8lng356h39crj5sgaqkmg";
|
2017-07-05 23:53:31 +02:00
|
|
|
};
|
|
|
|
|
2020-12-26 22:06:22 +01:00
|
|
|
vendorSha256 = "15i1ajvrff1bfpv3kmb1wm1mmriswwfw2v4cml0nv0zp6a5n5187";
|
2017-07-05 23:53:31 +02:00
|
|
|
|
2017-09-03 15:38:28 +02:00
|
|
|
passthru = {
|
|
|
|
inherit rubyEnv;
|
|
|
|
};
|
2018-09-25 02:11:36 +02:00
|
|
|
|
2020-11-24 21:56:11 +01:00
|
|
|
buildFlags = [ "-tags=static,system_libgit2" ];
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config ];
|
2020-12-26 22:06:22 +01:00
|
|
|
buildInputs = [ rubyEnv.wrappedRuby libgit openssl zlib pcre http-parser ];
|
2020-11-26 13:41:18 +01:00
|
|
|
doCheck = false;
|
2018-06-06 13:04:35 +02:00
|
|
|
|
2017-09-03 15:38:28 +02:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $ruby
|
2020-11-20 21:02:55 +01:00
|
|
|
cp -rv $src/ruby/{bin,lib,proto,git-hooks} $ruby
|
2017-07-05 23:53:31 +02:00
|
|
|
'';
|
|
|
|
|
2020-04-28 03:50:57 +02:00
|
|
|
outputs = [ "out" "ruby" ];
|
2017-09-03 15:38:28 +02:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://gitlab.com/gitlab-org/gitaly";
|
2019-10-06 06:59:27 +02:00
|
|
|
description = "A Git RPC service for handling all the git calls made by GitLab";
|
2019-10-09 15:45:12 +02:00
|
|
|
platforms = platforms.linux;
|
2020-03-02 21:27:05 +01:00
|
|
|
maintainers = with maintainers; [ roblabla globin fpletz talyz ];
|
2017-07-05 23:53:31 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|