11 stdenv.mkDerivation rec {
12 pname = "guile-lzlib";
16 url = "https://notabug.org/guile-lzlib/guile-lzlib/archive/${version}.tar.gz";
17 hash = "sha256-p/mcjSoUPgXqItstyLnObCfK6UIWK0XuMBXtkCevD/I=";
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;
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;