summary refs log tree commit diff
path: root/pkgs/development/libraries/lzo
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-03-03 13:27:40 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-03-03 13:27:40 +0000
commitfcad0b0a5a6563453d3793e010af8b11232f64ad (patch)
tree44d0f27cc059d027bee6fcfc1518dd6da15f6754 /pkgs/development/libraries/lzo
parent9efba4b3b068ebae3bc0d47e4095ff4807a4d3a7 (diff)
downloadnixpkgs-fcad0b0a5a6563453d3793e010af8b11232f64ad.tar
nixpkgs-fcad0b0a5a6563453d3793e010af8b11232f64ad.tar.gz
nixpkgs-fcad0b0a5a6563453d3793e010af8b11232f64ad.tar.bz2
nixpkgs-fcad0b0a5a6563453d3793e010af8b11232f64ad.tar.lz
nixpkgs-fcad0b0a5a6563453d3793e010af8b11232f64ad.tar.xz
nixpkgs-fcad0b0a5a6563453d3793e010af8b11232f64ad.tar.zst
nixpkgs-fcad0b0a5a6563453d3793e010af8b11232f64ad.zip
* 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
Diffstat (limited to 'pkgs/development/libraries/lzo')
-rw-r--r--pkgs/development/libraries/lzo/default.nix27
1 files changed, 15 insertions, 12 deletions
diff --git a/pkgs/development/libraries/lzo/default.nix b/pkgs/development/libraries/lzo/default.nix
index 64d03c434c2..834b7abf593 100644
--- a/pkgs/development/libraries/lzo/default.nix
+++ b/pkgs/development/libraries/lzo/default.nix
@@ -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;
+  };
 }