mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
guile-disarchive: init at 0.5.0
This commit is contained in:
parent
290c406ab9
commit
12f8582680
45
pkgs/by-name/gu/guile-disarchive/package.nix
Normal file
45
pkgs/by-name/gu/guile-disarchive/package.nix
Normal file
@ -0,0 +1,45 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchurl
|
||||
, guile
|
||||
, autoreconfHook
|
||||
, guile-gcrypt
|
||||
, guile-lzma
|
||||
, guile-quickcheck
|
||||
, pkg-config
|
||||
, zlib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "guile-disarchive";
|
||||
version = "0.5.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://files.ngyro.com/disarchive/disarchive-${version}.tar.gz";
|
||||
hash = "sha256-Agt7v5HTpaskXuYmMdGDRIolaqCHUpwd/CfbZCe9Ups=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
pkg-config
|
||||
guile
|
||||
zlib
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
guile-gcrypt
|
||||
guile-lzma
|
||||
];
|
||||
|
||||
nativeCheckInputs = [ guile-quickcheck ];
|
||||
|
||||
doCheck = !stdenv.isDarwin;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Disassemble software into data and metadata";
|
||||
homepage = "https://ngyro.com/software/disarchive.html";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ foo-dogsquared ];
|
||||
platforms = guile.meta.platforms;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user