tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
rzip: cleanup
Sandro Jäckel
4 years ago
56d6f78a
676fe1cc
+10
-7
1 changed file
expand all
collapse all
unified
split
pkgs
tools
compression
rzip
default.nix
+10
-7
pkgs/tools/compression/rzip/default.nix
···
1
1
-
{lib, stdenv, fetchurl, fetchpatch, bzip2}:
1
1
+
{ lib, stdenv, fetchurl, fetchpatch, bzip2 }:
2
2
+
3
3
+
stdenv.mkDerivation rec {
4
4
+
pname = "rzip";
5
5
+
version = "2.1";
2
6
3
3
-
stdenv.mkDerivation {
4
4
-
name = "rzip-2.1";
5
7
src = fetchurl {
6
6
-
url = "mirror://samba/rzip/rzip-2.1.tar.gz";
8
8
+
url = "mirror://samba/rzip/rzip-${version}.tar.gz";
7
9
sha256 = "4bb96f4d58ccf16749ed3f836957ce97dbcff3e3ee5fd50266229a48f89815b7";
8
10
};
9
11
buildInputs = [ bzip2 ];
···
16
18
})
17
19
];
18
20
19
19
-
meta = {
21
21
+
meta = with lib; {
20
22
homepage = "https://rzip.samba.org/";
21
23
description = "Compression program";
22
22
-
license = lib.licenses.gpl2Plus;
23
23
-
platforms = lib.platforms.unix;
24
24
+
maintainers = with maintainers; [ ];
25
25
+
license = licenses.gpl2Plus;
26
26
+
platforms = platforms.unix;
24
27
};
25
28
}