libz: init at unstable-2018-03-31

This commit is contained in:
Anderson Torres 2023-08-18 22:17:00 -03:00
parent d939536baa
commit 89004b7cf2
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ lib
, stdenv
, fetchFromGitLab
, unstableGitUpdater
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libz";
version = "unstable-2018-03-31";
src = fetchFromGitLab {
owner = "sortix";
repo = "libz";
rev = "752c1630421502d6c837506d810f7918ac8cdd27";
hash = "sha256-AQuZ0BOl1iP5Nub+tVwctlE2tfJe4Sq/KDGkjwBbsV4=";
};
outputs = [ "out" "dev" ];
outputDoc = "dev"; # single tiny man3 page
passthru.updateScript = unstableGitUpdater { };
meta = {
homepage = "https://sortix.org/libz/";
description = "A clean fork of zlib";
license = [ lib.licenses.zlib ];
maintainers = with lib.maintainers; [ AndersonTorres ];
platforms = lib.platforms.unix;
};
})

View file

@ -5768,6 +5768,8 @@ with pkgs;
libxnd = callPackage ../development/libraries/libxnd { };
libz = callPackage ../development/libraries/libz { };
libzbc = callPackage ../os-specific/linux/libzbc { };
libzbd = callPackage ../os-specific/linux/libzbd { };