nixpkgs/pkgs/development/libraries/xmlsec/default.nix

30 lines
831 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libxml2, gnutls, libxslt, pkgconfig, libgcrypt, libtool
, openssl, makeWrapper }:
let
2014-10-08 17:52:38 +00:00
version = "1.2.20";
in
stdenv.mkDerivation rec {
name = "xmlsec-${version}";
src = fetchurl {
url = "http://www.aleksey.com/xmlsec/download/xmlsec1-${version}.tar.gz";
2014-10-08 17:52:38 +00:00
sha256 = "01bkbv2y3x8d1sf4dcln1x3y2jyj391s3208d9a2ndhglly5j89j";
};
buildInputs = [ makeWrapper libxml2 gnutls libxslt pkgconfig libgcrypt libtool openssl ];
enableParallelBuilding = true;
doCheck = true;
postFixup = ''
wrapProgram "$out/bin/xmlsec1" --prefix LD_LIBRARY_PATH ":" "$out/lib"
'';
meta = {
homepage = http://www.aleksey.com/xmlsec;
description = "XML Security Library in C based on libxml2";
license = stdenv.lib.licenses.mit;
2015-09-23 04:25:53 +00:00
platforms = with stdenv.lib.platforms; linux ++ darwin;
};
}