* Cleaned up a lot of description fields that contained newlines.
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
This commit is contained in:
@@ -1,14 +1,17 @@
|
||||
args: with args;
|
||||
{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 = "LZO is a data compresion library which is suitable for
|
||||
data de-/compression in real-time";
|
||||
homepage = http://www.oberhumer.com/opensource/lzo;
|
||||
};
|
||||
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;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user