storj-uplink: 1.119.15 -> 1.120.4 (#375732)
[NixPkgs.git] / pkgs / by-name / li / libz / package.nix
blob62c579d2f20b47ec11711108aa618d34871398d9
2   lib,
3   stdenv,
4   fetchFromGitLab,
5   unstableGitUpdater,
6 }:
8 stdenv.mkDerivation (finalAttrs: {
9   pname = "libz";
10   version = "1.2.8.2015.12.26-unstable-2018-03-31";
12   src = fetchFromGitLab {
13     owner = "sortix";
14     repo = "libz";
15     rev = "752c1630421502d6c837506d810f7918ac8cdd27";
16     hash = "sha256-AQuZ0BOl1iP5Nub+tVwctlE2tfJe4Sq/KDGkjwBbsV4=";
17   };
19   outputs = [
20     "out"
21     "dev"
22   ];
23   outputDoc = "dev"; # single tiny man3 page
25   passthru.updateScript = unstableGitUpdater {
26     tagPrefix = "libz-";
27   };
29   meta = {
30     homepage = "https://sortix.org/libz/";
31     description = "Clean fork of zlib";
32     license = [ lib.licenses.zlib ];
33     maintainers = with lib.maintainers; [ AndersonTorres ];
34     platforms = lib.platforms.unix;
35   };