opensaml-cpp: init at 2.6.0
Required by the Shibboleth Service Provider
This commit is contained in:
parent
7267ae5e1d
commit
d169a9c619
23
pkgs/development/libraries/opensaml-cpp/default.nix
Normal file
23
pkgs/development/libraries/opensaml-cpp/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchgit, autoreconfHook, boost, openssl, log4shib, xercesc, xml-security-c, xml-tooling-c, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "opensaml-cpp-${version}";
|
||||
version = "2.6.0";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://git.shibboleth.net/git/cpp-opensaml.git";
|
||||
rev = "61193de29e4c9f1ccff7ed7e1f42c2748c62be77";
|
||||
sha256 = "1jlxa1f2qn0kd15fzjqp80apxn42v47wg3mx1vk424m31rhi00xr";
|
||||
};
|
||||
|
||||
buildInputs = [ boost openssl log4shib xercesc xml-security-c xml-tooling-c zlib ];
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
configureFlags = [ "--with-xmltooling=${xml-tooling-c}" ];
|
||||
|
||||
meta = {
|
||||
home = https://shibboleth.net/products/opensaml-cpp.html;
|
||||
description = "A low-level library written in C++ that provides support for producing and consuming SAML messages";
|
||||
};
|
||||
|
||||
}
|
@ -9312,6 +9312,8 @@ with pkgs;
|
||||
openjpeg_2_1 = callPackage ../development/libraries/openjpeg/2.1.nix { };
|
||||
openjpeg = openjpeg_2_1;
|
||||
|
||||
opensaml-cpp = callPackage ../development/libraries/opensaml-cpp { };
|
||||
|
||||
openscenegraph = callPackage ../development/libraries/openscenegraph { };
|
||||
|
||||
openslp = callPackage ../development/libraries/openslp {};
|
||||
|
Loading…
Reference in New Issue
Block a user