depot/third_party/nixpkgs/pkgs/by-name/gu/guile-lzma/package.nix
Default email 5e7c2d6cef Project import generated by Copybara.
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
2023-10-09 21:29:22 +02:00

37 lines
770 B
Nix

{ stdenv
, lib
, fetchurl
, xz
, pkg-config
, guile
, scheme-bytestructures
}:
stdenv.mkDerivation rec {
pname = "guile-lzma";
version = "0.1.1";
src = fetchurl {
url = "https://files.ngyro.com/guile-lzma/guile-lzma-${version}.tar.gz";
hash = "sha256-K4ZoltZy7U05AI9LUzZ1DXiXVgoGZ4Nl9cWnK9L8zl4=";
};
strictDeps = true;
nativeBuildInputs = [
guile
pkg-config
scheme-bytestructures
];
buildInputs = [ guile ];
propagatedBuildInputs = [ xz ];
doCheck = true;
meta = with lib; {
homepage = "https://ngyro.com/software/guile-lzma.html";
description = "Guile wrapper for lzma library";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ foo-dogsquared ];
platforms = guile.meta.platforms;
};
}