mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Merge pull request #257957 from foo-dogsquared/add-guile-lzma
guile-lzma: init at 0.1.1
This commit is contained in:
commit
ca652e28ac
37
pkgs/by-name/gu/guile-lzma/package.nix
Normal file
37
pkgs/by-name/gu/guile-lzma/package.nix
Normal file
@ -0,0 +1,37 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user