clzip: init at 1.13

This commit is contained in:
Red Star Over Earth 2023-09-22 20:00:39 +08:00
parent 20c84e9fd7
commit ab6ac26c98
No known key found for this signature in database
GPG key ID: A5687C915DEBF98D

View file

@ -0,0 +1,22 @@
{ lib
, stdenv
, fetchurl
}:
stdenv.mkDerivation (finalAttrs: {
pname = "clzip";
version = "1.13";
src = fetchurl {
url = "mirror://savannah/lzip/clzip/clzip-${finalAttrs.version}.tar.gz";
hash = "sha256-esn79QNr9Q+wtqIOhNIpPLDSTUBE6vM8vpdgu55/6no=";
};
meta = with lib; {
homepage = "https://www.nongnu.org/lzip/clzip.html";
description = "C language version of lzip";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ rs0vere ];
platforms = platforms.all;
};
})