mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
plzip: init at 1.10 (#187539)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
d264c07bd6
commit
0c5b09e106
@ -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";
|
||||
|
25
pkgs/tools/compression/plzip/default.nix
Normal file
25
pkgs/tools/compression/plzip/default.nix
Normal file
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user