1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 05:00:16 +00:00

xmlsec: update from 1.2.19 to 1.2.20

This commit is contained in:
Aristid Breitkreuz 2014-10-08 19:52:38 +02:00
parent a8e104f3de
commit 29e38aeb9d

View file

@ -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 ];