summary refs log tree commit diff
path: root/pkgs/development/libraries/xmlsec
diff options
context:
space:
mode:
authorAristid Breitkreuz <aristidb@gmail.com>2014-10-08 19:52:38 +0200
committerAristid Breitkreuz <aristidb@gmail.com>2014-10-08 20:23:26 +0200
commit29e38aeb9d512c19ee005dcd9e5dc38161f1f21c (patch)
treeba484907965d7478a391f0abe1840f8fbbb2588c /pkgs/development/libraries/xmlsec
parenta8e104f3ded368ba0004ad35596156db3358965b (diff)
downloadnixpkgs-29e38aeb9d512c19ee005dcd9e5dc38161f1f21c.tar
nixpkgs-29e38aeb9d512c19ee005dcd9e5dc38161f1f21c.tar.gz
nixpkgs-29e38aeb9d512c19ee005dcd9e5dc38161f1f21c.tar.bz2
nixpkgs-29e38aeb9d512c19ee005dcd9e5dc38161f1f21c.tar.lz
nixpkgs-29e38aeb9d512c19ee005dcd9e5dc38161f1f21c.tar.xz
nixpkgs-29e38aeb9d512c19ee005dcd9e5dc38161f1f21c.tar.zst
nixpkgs-29e38aeb9d512c19ee005dcd9e5dc38161f1f21c.zip
xmlsec: update from 1.2.19 to 1.2.20
Diffstat (limited to 'pkgs/development/libraries/xmlsec')
-rw-r--r--pkgs/development/libraries/xmlsec/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/xmlsec/default.nix b/pkgs/development/libraries/xmlsec/default.nix
index 80f4e2fc860..3fba451c711 100644
--- a/pkgs/development/libraries/xmlsec/default.nix
+++ b/pkgs/development/libraries/xmlsec/default.nix
@@ -1,14 +1,14 @@
 { stdenv, fetchurl, libxml2, gnutls, libxslt, pkgconfig, libgcrypt, libtool }:
 
 let
-  version = "1.2.19";
+  version = "1.2.20";
 in
 stdenv.mkDerivation rec {
   name = "xmlsec-${version}";
 
   src = fetchurl {
     url = "http://www.aleksey.com/xmlsec/download/xmlsec1-${version}.tar.gz";
-    sha256 = "1h5ar0h8n0l8isgic82w00cwfpw7i9wxw17kbdb6q3yvzb4zgj1g";
+    sha256 = "01bkbv2y3x8d1sf4dcln1x3y2jyj391s3208d9a2ndhglly5j89j";
   };
 
   buildInputs = [ libxml2 gnutls libxslt pkgconfig libgcrypt libtool ];