codesnap: init at 0.8.2 (#364266)
[NixPkgs.git] / pkgs / by-name / gu / guile-git / package.nix
blobf092238929bf44e19822fd83c78e4c34397c8a46
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.8.0";
16   src = fetchFromGitLab {
17     owner = "guile-git";
18     repo = pname;
19     rev = "v${version}";
20     hash = "sha256-EZ2uGyk1K2YCl/U7EzTKri6CEe8CGDRy4pNRVjp7ZZY=";
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.hostPlatform.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   };