b5f92a349c
GitOrigin-RevId: 7c9cc5a6e5d38010801741ac830a3f8fd667a7a0
22 lines
512 B
Nix
22 lines
512 B
Nix
{ 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; [ ];
|
|
platforms = platforms.all;
|
|
};
|
|
})
|