1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-22 16:26:48 -04:00
nixpkgs/pkgs/tools/compression/lrzip/default.nix

21 lines
512 B
Nix
Raw Normal View History

{stdenv, fetchurl, zlib, lzo, bzip2, nasm, perl}:
stdenv.mkDerivation rec {
2013-10-20 13:10:02 -04:00
version = "0.616";
2013-03-09 06:02:44 -05:00
name = "lrzip-${version}";
src = fetchurl {
url = "http://ck.kolivas.org/apps/lrzip/${name}.tar.bz2";
2013-10-20 13:10:02 -04:00
sha256 = "1bimlbsfzjvippbma08ifm1grcy9i7avryrkdvnvrfyqnj6mlbcq";
};
buildInputs = [ zlib lzo bzip2 nasm perl ];
meta = {
homepage = http://ck.kolivas.org/apps/lrzip/;
description = "The CK LRZIP compression program (LZMA + RZIP)";
license = "GPLv2+";
2013-03-09 06:02:44 -05:00
inherit version;
};
}