forked from mirrors/nixpkgs
lzip: add version 1.14-rc3
This commit is contained in:
parent
4aa56c21c8
commit
6b702f23ea
21
pkgs/tools/compression/lzip/default.nix
Normal file
21
pkgs/tools/compression/lzip/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "lzip-1.14-rc3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://download.savannah.gnu.org/releases/lzip/${name}.tar.gz";
|
||||
sha256 = "040mmfadvhry68bv10baqi1bs8g5wwbf5rx0widyz69llpn64mw9";
|
||||
};
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.nongnu.org/lzip/lzip.html";
|
||||
description = "a lossless data compressor based on the LZMA algorithm";
|
||||
license = stdenv.lib.licenses.gpl3Plus;
|
||||
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||
};
|
||||
}
|
|
@ -1067,6 +1067,8 @@ let
|
|||
|
||||
lxc = callPackage ../os-specific/linux/lxc { };
|
||||
|
||||
lzip = callPackage ../tools/compression/lzip { };
|
||||
|
||||
lzma = xz;
|
||||
|
||||
xz = callPackage ../tools/compression/xz { };
|
||||
|
|
Loading…
Reference in a new issue