tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libz: init at unstable-2018-03-31
Anderson Torres
2 years ago
89004b7c
d939536b
+32
2 changed files
expand all
collapse all
unified
split
pkgs
development
libraries
libz
default.nix
top-level
all-packages.nix
+30
pkgs/development/libraries/libz/default.nix
···
1
1
+
{ lib
2
2
+
, stdenv
3
3
+
, fetchFromGitLab
4
4
+
, unstableGitUpdater
5
5
+
}:
6
6
+
7
7
+
stdenv.mkDerivation (finalAttrs: {
8
8
+
pname = "libz";
9
9
+
version = "unstable-2018-03-31";
10
10
+
11
11
+
src = fetchFromGitLab {
12
12
+
owner = "sortix";
13
13
+
repo = "libz";
14
14
+
rev = "752c1630421502d6c837506d810f7918ac8cdd27";
15
15
+
hash = "sha256-AQuZ0BOl1iP5Nub+tVwctlE2tfJe4Sq/KDGkjwBbsV4=";
16
16
+
};
17
17
+
18
18
+
outputs = [ "out" "dev" ];
19
19
+
outputDoc = "dev"; # single tiny man3 page
20
20
+
21
21
+
passthru.updateScript = unstableGitUpdater { };
22
22
+
23
23
+
meta = {
24
24
+
homepage = "https://sortix.org/libz/";
25
25
+
description = "A clean fork of zlib";
26
26
+
license = [ lib.licenses.zlib ];
27
27
+
maintainers = with lib.maintainers; [ AndersonTorres ];
28
28
+
platforms = lib.platforms.unix;
29
29
+
};
30
30
+
})
+2
pkgs/top-level/all-packages.nix
···
5768
5768
5769
5769
libxnd = callPackage ../development/libraries/libxnd { };
5770
5770
5771
5771
+
libz = callPackage ../development/libraries/libz { };
5772
5772
+
5771
5773
libzbc = callPackage ../os-specific/linux/libzbc { };
5772
5774
5773
5775
libzbd = callPackage ../os-specific/linux/libzbd { };