depot/pkgs/by-name/li/libz/package.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

32 lines
745 B
Nix

{ lib
, stdenv
, fetchFromGitLab
, unstableGitUpdater
}:
stdenv.mkDerivation (finalAttrs: {
pname = "libz";
version = "1.2.8.2015.12.26-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 {
tagPrefix = "libz-";
};
meta = {
homepage = "https://sortix.org/libz/";
description = "Clean fork of zlib";
license = [ lib.licenses.zlib ];
maintainers = with lib.maintainers; [ AndersonTorres ];
platforms = lib.platforms.unix;
};
})