evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / gu / guile-lzlib / package.nix
bloba465849470b04d59cdc9e9538e70b6b0a770335d
1 { lib
2 , stdenv
3 , fetchurl
4 , autoreconfHook
5 , guile
6 , pkg-config
7 , texinfo
8 , lzlib
9 }:
11 stdenv.mkDerivation rec {
12   pname = "guile-lzlib";
13   version = "0.3.0";
15   src = fetchurl {
16     url = "https://notabug.org/guile-lzlib/guile-lzlib/archive/${version}.tar.gz";
17     hash = "sha256-p/mcjSoUPgXqItstyLnObCfK6UIWK0XuMBXtkCevD/I=";
18   };
20   strictDeps = true;
22   nativeBuildInputs = [ autoreconfHook guile pkg-config texinfo ];
23   propagatedBuildInputs = [ guile lzlib ];
25   makeFlags = [ "GUILE_AUTO_COMPILE=0" ];
27   # tests fail on darwin
28   doCheck = !stdenv.hostPlatform.isDarwin;
30   meta = with lib; {
31     description = "GNU Guile library providing bindings to lzlib";
32     homepage = "https://notabug.org/guile-lzlib/guile-lzlib";
33     license = licenses.gpl3Plus;
34     maintainers = with maintainers; [ foo-dogsquared ];
35     platforms = guile.meta.platforms;
36   };