3
0
Fork 0
forked from mirrors/nixpkgs

rzip: cleanup

This commit is contained in:
Sandro Jäckel 2021-07-21 13:49:44 +02:00
parent 676fe1cc8f
commit 56d6f78a0d
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,9 +1,11 @@
{lib, stdenv, fetchurl, fetchpatch, bzip2}: { lib, stdenv, fetchurl, fetchpatch, bzip2 }:
stdenv.mkDerivation rec {
pname = "rzip";
version = "2.1";
stdenv.mkDerivation {
name = "rzip-2.1";
src = fetchurl { src = fetchurl {
url = "mirror://samba/rzip/rzip-2.1.tar.gz"; url = "mirror://samba/rzip/rzip-${version}.tar.gz";
sha256 = "4bb96f4d58ccf16749ed3f836957ce97dbcff3e3ee5fd50266229a48f89815b7"; sha256 = "4bb96f4d58ccf16749ed3f836957ce97dbcff3e3ee5fd50266229a48f89815b7";
}; };
buildInputs = [ bzip2 ]; buildInputs = [ bzip2 ];
@ -16,10 +18,11 @@ stdenv.mkDerivation {
}) })
]; ];
meta = { meta = with lib; {
homepage = "https://rzip.samba.org/"; homepage = "https://rzip.samba.org/";
description = "Compression program"; description = "Compression program";
license = lib.licenses.gpl2Plus; maintainers = with maintainers; [ ];
platforms = lib.platforms.unix; license = licenses.gpl2Plus;
platforms = platforms.unix;
}; };
} }