Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

rzip: cleanup

+10 -7
+10 -7
pkgs/tools/compression/rzip/default.nix
··· 1 - {lib, stdenv, fetchurl, fetchpatch, bzip2}: 2 3 - stdenv.mkDerivation { 4 - name = "rzip-2.1"; 5 src = fetchurl { 6 - url = "mirror://samba/rzip/rzip-2.1.tar.gz"; 7 sha256 = "4bb96f4d58ccf16749ed3f836957ce97dbcff3e3ee5fd50266229a48f89815b7"; 8 }; 9 buildInputs = [ bzip2 ]; ··· 16 }) 17 ]; 18 19 - meta = { 20 homepage = "https://rzip.samba.org/"; 21 description = "Compression program"; 22 - license = lib.licenses.gpl2Plus; 23 - platforms = lib.platforms.unix; 24 }; 25 }
··· 1 + { lib, stdenv, fetchurl, fetchpatch, bzip2 }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "rzip"; 5 + version = "2.1"; 6 7 src = fetchurl { 8 + url = "mirror://samba/rzip/rzip-${version}.tar.gz"; 9 sha256 = "4bb96f4d58ccf16749ed3f836957ce97dbcff3e3ee5fd50266229a48f89815b7"; 10 }; 11 buildInputs = [ bzip2 ]; ··· 18 }) 19 ]; 20 21 + meta = with lib; { 22 homepage = "https://rzip.samba.org/"; 23 description = "Compression program"; 24 + maintainers = with maintainers; [ ]; 25 + license = licenses.gpl2Plus; 26 + platforms = platforms.unix; 27 }; 28 }