summary refs log tree commit diff
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2017-04-11 12:54:18 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2017-04-11 13:00:56 +0300
commit8eb25e12451f0efd68ab7edab2d0bb3a9f2d8735 (patch)
treef937917cfd3804bb6b14e07ce85f94c7cec109c8
parent6b84ee9f965a7787cdbe4e2e82aa3f305c478098 (diff)
downloadnixpkgs-8eb25e12451f0efd68ab7edab2d0bb3a9f2d8735.tar
nixpkgs-8eb25e12451f0efd68ab7edab2d0bb3a9f2d8735.tar.gz
nixpkgs-8eb25e12451f0efd68ab7edab2d0bb3a9f2d8735.tar.bz2
nixpkgs-8eb25e12451f0efd68ab7edab2d0bb3a9f2d8735.tar.lz
nixpkgs-8eb25e12451f0efd68ab7edab2d0bb3a9f2d8735.tar.xz
nixpkgs-8eb25e12451f0efd68ab7edab2d0bb3a9f2d8735.tar.zst
nixpkgs-8eb25e12451f0efd68ab7edab2d0bb3a9f2d8735.zip
lzo: 2.09 -> 2.10
-rw-r--r--pkgs/development/libraries/lzo/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/lzo/default.nix b/pkgs/development/libraries/lzo/default.nix
index 23168de43ed..8739c9d25d5 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.09";
+  name = "lzo-2.10";
 
   src = fetchurl {
     url = "${meta.homepage}/download/${name}.tar.gz";
-    sha256 = "0k5kpj3jnsjfxqqkblpfpx0mqcy86zs5fhjhgh2kq1hksg7ag57j";
+    sha256 = "0wm04519pd3g8hqpjqhfr72q8qmbiwqaxcs3cndny9h86aa95y60";
   };
 
   configureFlags = [ "--enable-shared" ];