Adding oath-toolkit and xmlsec

I added xmlsec to make it work with oath-toolkit (to build one extra tool
there, that I don't need), but I couldn't make it work together.
This commit is contained in:
Lluís Batlle i Rossell
2013-03-31 00:07:35 +01:00
parent 2ba0d9d3ae
commit 6281042def
3 changed files with 46 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
{ stdenv, fetchurl, libxml2, gnutls, libxslt, pkgconfig, libgcrypt, libtool }:
let
version = "1.2.19";
in
stdenv.mkDerivation rec {
name = "xmlsec-${version}";
src = fetchurl {
url = "http://www.aleksey.com/xmlsec/download/xmlsec1-${version}.tar.gz";
sha256 = "1h5ar0h8n0l8isgic82w00cwfpw7i9wxw17kbdb6q3yvzb4zgj1g";
};
buildInputs = [ libxml2 gnutls libxslt pkgconfig libgcrypt libtool ];
enableParallelBuilding = true;
meta = {
homepage = http://www.aleksey.com/xmlsec;
description = "XML Security Library in C based on libxml2";
license = "MIT";
platforms = stdenv.lib.platforms.linux;
};
}