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

49 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, libxml2, gnutls, libxslt, pkgconfig, libgcrypt, libtool
, openssl, nss, makeWrapper }:
2013-03-31 00:07:35 +01:00
let
2018-06-23 08:42:39 -07:00
version = "1.2.26";
2013-03-31 00:07:35 +01:00
in
stdenv.mkDerivation rec {
name = "xmlsec-${version}";
src = fetchurl {
2018-06-28 20:43:35 +02:00
url = "https://www.aleksey.com/xmlsec/download/xmlsec1-${version}.tar.gz";
2018-06-23 08:42:39 -07:00
sha256 = "0l1dk344rn3j2vnj13daz72xd8j1msvzhg82n2il5ji0qz4pd0ld";
2013-03-31 00:07:35 +01:00
};
2017-09-25 19:49:21 +02:00
outputs = [ "out" "dev" ];
nativeBuildInputs = [ makeWrapper pkgconfig ];
buildInputs = [ libxml2 gnutls libxslt libgcrypt libtool openssl nss ];
2017-09-25 19:49:21 +02:00
2013-03-31 00:07:35 +01:00
enableParallelBuilding = true;
doCheck = true;
# enable deprecated soap headers required by lasso
# https://dev.entrouvert.org/issues/18771
configureFlags = [ "--enable-soap" ];
2016-03-29 12:14:31 +02:00
# otherwise libxmlsec1-gnutls.so won't find libgcrypt.so, after #909
NIX_LDFLAGS = [ "-lgcrypt" ];
2017-09-25 19:49:21 +02:00
postInstall = ''
moveToOutput "bin/xmlsec1-config" "$dev"
moveToOutput "lib/xmlsec1Conf.sh" "$dev"
'';
postFixup = ''
wrapProgram "$out/bin/xmlsec1" --prefix LD_LIBRARY_PATH ":" "$out/lib"
'';
2013-03-31 00:07:35 +01:00
meta = {
homepage = http://www.aleksey.com/xmlsec;
downloadPage = https://www.aleksey.com/xmlsec/download.html;
2013-03-31 00:07:35 +01:00
description = "XML Security Library in C based on libxml2";
license = stdenv.lib.licenses.mit;
2015-09-23 13:25:53 +09:00
platforms = with stdenv.lib.platforms; linux ++ darwin;
updateWalker = true;
2013-03-31 00:07:35 +01:00
};
}