nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 fetchurl,
5}:
6
7stdenv.mkDerivation (finalAttrs: {
8 pname = "clzip";
9 version = "1.15";
10
11 src = fetchurl {
12 url = "mirror://savannah/lzip/clzip/clzip-${finalAttrs.version}.tar.gz";
13 hash = "sha256-KH6FFSaP+NFiRIeODi4tczwD2S3SsrhJFdde9N5sJh8=";
14 };
15
16 meta = {
17 homepage = "https://www.nongnu.org/lzip/clzip.html";
18 description = "C language version of lzip";
19 mainProgram = "clzip";
20 license = lib.licenses.gpl2Plus;
21 maintainers = [ ];
22 platforms = lib.platforms.all;
23 };
24})