Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / guile-modules / guile-git / default.nix
blob6afddd8d362e5232c79cf80f9d60a843add72767
1 { lib
2 , stdenv
3 , fetchFromGitLab
4 , guile
5 , libgit2
6 , scheme-bytestructures
7 , autoreconfHook
8 , pkg-config
9 , texinfo
12 stdenv.mkDerivation rec {
13   pname = "guile-git";
14   version = "0.5.2";
16   src = fetchFromGitLab {
17     owner = "guile-git";
18     repo = pname;
19     rev = "v${version}";
20     sha256 = "x6apF9fmwzrkyzAexKjClOTFrbE31+fVhSLyFZkKRYU=";
21   };
23   strictDeps = true;
24   nativeBuildInputs = [
25     autoreconfHook guile pkg-config texinfo
26   ];
27   buildInputs = [
28     guile
29   ];
30   propagatedBuildInputs = [
31     libgit2 scheme-bytestructures
32   ];
33   doCheck = !stdenv.isDarwin;
34   makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
36   enableParallelBuilding = true;
38   # Skipping proxy tests since it requires network access.
39   postConfigure = ''
40     sed -i -e '94i (test-skip 1)' ./tests/proxy.scm
41   '';
43   meta = with lib; {
44     description = "Bindings to Libgit2 for GNU Guile";
45     homepage = "https://gitlab.com/guile-git/guile-git";
46     license = licenses.gpl3Plus;
47     maintainers = with maintainers; [ ethancedwards8 ];
48     platforms = guile.meta.platforms;
49   };