forked from mirrors/nixpkgs
Adding lzop and updating lzo.
svn path=/nixpkgs/trunk/; revision=14749
This commit is contained in:
parent
cf0010d338
commit
701e3ee6b9
|
@ -1,11 +1,11 @@
|
|||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "lzo-2.02";
|
||||
name = "lzo-2.03";
|
||||
|
||||
src = fetchurl {
|
||||
url = "${meta.homepage}/download/${name}.tar.gz";
|
||||
sha256 = "1i9g9bdrmyn6546rnck3kkh8nssfaw75m2rxir4sn7bwvnsfryx2";
|
||||
sha256 = "8b1b0da8f757b9ac318e1c15a0eac8bdb56ca902a2dd25beda06c0f265f22591";
|
||||
};
|
||||
|
||||
configureFlags = "--enable-shared --disable-static";
|
||||
|
@ -13,5 +13,6 @@ stdenv.mkDerivation rec {
|
|||
meta = {
|
||||
description = "A data compresion library suitable for real-time data de-/compression";
|
||||
homepage = http://www.oberhumer.com/opensource/lzo;
|
||||
license = "GPLv2+";
|
||||
};
|
||||
}
|
||||
|
|
17
pkgs/tools/compression/lzop/default.nix
Normal file
17
pkgs/tools/compression/lzop/default.nix
Normal file
|
@ -0,0 +1,17 @@
|
|||
{stdenv, fetchurl, lzo}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "lzop-1.02rc1";
|
||||
src = fetchurl {
|
||||
url = http://www.lzop.org/download/lzop-1.02rc1.tar.gz;
|
||||
sha256 = "1dc32bfd82b130727bcec1de3b8a7cf090b78b3f14981d375ceb862b1e0e6873";
|
||||
};
|
||||
|
||||
buildInputs = [ lzo ];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.lzop.org;
|
||||
description = "Fast file compressor";
|
||||
license = "GPL";
|
||||
};
|
||||
}
|
|
@ -914,12 +914,16 @@ let
|
|||
inherit fetchurl stdenv zlib lzo bzip2 nasm;
|
||||
};
|
||||
|
||||
lsh = import ../tools/networking/lsh {
|
||||
inherit stdenv fetchurl gperf guile gmp zlib liboop gnum4 pam;
|
||||
};
|
||||
|
||||
lzma = import ../tools/compression/lzma {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
lsh = import ../tools/networking/lsh {
|
||||
inherit stdenv fetchurl gperf guile gmp zlib liboop gnum4 pam;
|
||||
lzop = import ../tools/compression/lzop {
|
||||
inherit fetchurl stdenv lzo;
|
||||
};
|
||||
|
||||
man = import ../tools/misc/man {
|
||||
|
|
Loading…
Reference in a new issue