mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:18:26 +01:00
gitaly: build with system libgit2
This commit is contained in:
parent
c1c2ff4a97
commit
72ba4fce76
1 changed files with 6 additions and 3 deletions
|
@ -1,5 +1,7 @@
|
|||
{ stdenv, fetchFromGitLab, fetchFromGitHub, buildGoModule, ruby,
|
||||
bundlerEnv, pkgconfig, libgit2_0_27 }:
|
||||
{ stdenv, fetchFromGitLab, fetchFromGitHub, buildGoModule, ruby
|
||||
, bundlerEnv, pkgconfig
|
||||
# libgit2 + dependencies
|
||||
, libgit2, openssl, zlib, pcre, http-parser }:
|
||||
|
||||
let
|
||||
rubyEnv = bundlerEnv rec {
|
||||
|
@ -35,8 +37,9 @@ in buildGoModule rec {
|
|||
inherit rubyEnv;
|
||||
};
|
||||
|
||||
buildFlags = [ "-tags=static,system_libgit2" ];
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
buildInputs = [ rubyEnv.wrappedRuby libgit2_0_27 ];
|
||||
buildInputs = [ rubyEnv.wrappedRuby libgit2 openssl zlib pcre http-parser ];
|
||||
doCheck = false;
|
||||
|
||||
postInstall = ''
|
||||
|
|
Loading…
Reference in a new issue