about summary refs log tree commit diff
path: root/pkgs/development/libraries/lzo
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-02-02 20:49:42 +0000
committerLudovic Courtès <ludo@gnu.org>2012-02-02 20:49:42 +0000
commitf113ee27ad1befdff3eef7cbd714065f167b946b (patch)
treebd1e63d8bfb492a400e27746b18c689b9887eb72 /pkgs/development/libraries/lzo
parent9758857fbe69d84e98e9ffd9a0f73e1ac94e4bac (diff)
downloadnixlib-f113ee27ad1befdff3eef7cbd714065f167b946b.tar
nixlib-f113ee27ad1befdff3eef7cbd714065f167b946b.tar.gz
nixlib-f113ee27ad1befdff3eef7cbd714065f167b946b.tar.bz2
nixlib-f113ee27ad1befdff3eef7cbd714065f167b946b.tar.lz
nixlib-f113ee27ad1befdff3eef7cbd714065f167b946b.tar.xz
nixlib-f113ee27ad1befdff3eef7cbd714065f167b946b.tar.zst
nixlib-f113ee27ad1befdff3eef7cbd714065f167b946b.zip
LZO 2.06.
svn path=/nixpkgs/trunk/; revision=31988
Diffstat (limited to 'pkgs/development/libraries/lzo')
-rw-r--r--pkgs/development/libraries/lzo/default.nix22
1 files changed, 18 insertions, 4 deletions
diff --git a/pkgs/development/libraries/lzo/default.nix b/pkgs/development/libraries/lzo/default.nix
index e765cf1a6825..1da101478890 100644
--- a/pkgs/development/libraries/lzo/default.nix
+++ b/pkgs/development/libraries/lzo/default.nix
@@ -1,18 +1,32 @@
 {stdenv, fetchurl}:
 
 stdenv.mkDerivation rec {
-  name = "lzo-2.03";
-  
+  name = "lzo-2.06";
+
   src = fetchurl {
     url = "${meta.homepage}/download/${name}.tar.gz";
-    sha256 = "8b1b0da8f757b9ac318e1c15a0eac8bdb56ca902a2dd25beda06c0f265f22591";
+    sha256 = "0wryshs446s7cclrbjykyj766znhcpnr7s3cxy33ybfn6vwfcygz";
   };
 
-  configureFlags = "--enable-shared";
+  configureFlags = [ "--enable-shared" ];
+
+  doCheck = true;
 
   meta = {
     description = "A data compresion library suitable for real-time data de-/compression";
+    longDescription =
+      '' LZO is a data compression library which is suitable for data
+	 de-/compression in real-time.  This means it favours speed over
+	 compression ratio.
+
+	 LZO is written in ANSI C.  Both the source code and the compressed
+	 data format are designed to be portable across platforms.
+      '';
+
     homepage = http://www.oberhumer.com/opensource/lzo;
     license = "GPLv2+";
+
+    platforms = stdenv.lib.platforms.all;
+    maintainers = [ stdenv.lib.maintainers.ludo ];
   };
 }