fcad0b0a5a
Some of these should be longDescriptions, but most others just shouldn't contain newlines. E.g. write description = "Bla"; and not description = '' Bla ''; This pollutes "nix-env -qa --description" output. svn path=/nixpkgs/trunk/; revision=14310
18 lines
444 B
Nix
18 lines
444 B
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lzo-2.02";
|
|
|
|
src = fetchurl {
|
|
url = "${meta.homepage}/download/${name}.tar.gz";
|
|
sha256 = "1i9g9bdrmyn6546rnck3kkh8nssfaw75m2rxir4sn7bwvnsfryx2";
|
|
};
|
|
|
|
configureFlags = "--enable-shared --disable-static";
|
|
|
|
meta = {
|
|
description = "A data compresion library suitable for real-time data de-/compression";
|
|
homepage = http://www.oberhumer.com/opensource/lzo;
|
|
};
|
|
}
|