guile-disarchive: init at 0.5.0

This commit is contained in:
Gabriel Arazas 2023-10-14 18:58:27 +08:00
parent 290c406ab9
commit 12f8582680
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View 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;
};
}