plzip: init at 1.10 (#187539)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
rian 2022-08-21 19:48:03 +00:00 committed by GitHub
parent d264c07bd6
commit 0c5b09e106
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 33 additions and 0 deletions

@ -115,6 +115,12 @@
githubId = 7414843;
name = "Nicholas von Klitzing";
};
_360ied = {
name = "Brian Zhu";
email = "therealbarryplayer@gmail.com";
github = "360ied";
githubId = 19516527;
};
_13r0ck = {
name = "Brock Szuszczewicz";
email = "bnr@tuta.io";

@ -0,0 +1,25 @@
{ lib, stdenv, fetchurl, lzip, lzlib, texinfo }:
stdenv.mkDerivation rec {
pname = "plzip";
version = "1.10";
outputs = [ "out" "man" "info" ];
src = fetchurl {
url = "mirror://savannah/lzip/plzip/plzip-${version}.tar.lz";
sha256 = "62f16a67be0dabf0da7fd1cb7889fe5bfae3140cea6cafa1c39e7e35a5b3c661";
};
nativeBuildInputs = [ lzip texinfo ];
buildInputs = [ lzlib ];
enableParallelBuilding = true;
meta = with lib; {
homepage = "https://www.nongnu.org/lzip/plzip.html";
description = "A massively parallel lossless data compressor based on the lzlib compression library";
license = licenses.gpl2Plus;
platforms = platforms.all;
maintainers = with maintainers; [ _360ied ];
};
}

@ -8581,6 +8581,8 @@ with pkgs;
lzip = callPackage ../tools/compression/lzip { };
plzip = callPackage ../tools/compression/plzip { };
lziprecover = callPackage ../tools/compression/lziprecover { };
luxcorerender = callPackage ../tools/graphics/luxcorerender {