aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/lzo
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-03-28 19:28:59 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-03-28 19:28:59 +0000
commit701e3ee6b9ec8f5b2cf8e86fb0308b6743256898 (patch)
treeea295d310643457253d8c08955a3650e6ce92721 /pkgs/development/libraries/lzo
parentcf0010d3388c425eb154bf4c75947116e1fd8f32 (diff)
Adding lzop and updating lzo.
svn path=/nixpkgs/trunk/; revision=14749
Diffstat (limited to 'pkgs/development/libraries/lzo')
-rw-r--r--pkgs/development/libraries/lzo/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/development/libraries/lzo/default.nix b/pkgs/development/libraries/lzo/default.nix
index 834b7abf5930..6ce1e786dbee 100644
--- a/pkgs/development/libraries/lzo/default.nix
+++ b/pkgs/development/libraries/lzo/default.nix
@@ -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+";
};
}