shibboleth-sp: init at 2.6.0
This commit is contained in:
parent
d169a9c619
commit
dfcc8dd48c
29
pkgs/development/libraries/shibboleth-sp/default.nix
Normal file
29
pkgs/development/libraries/shibboleth-sp/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ stdenv, fetchgit, autoreconfHook, boost, fcgi, openssl, opensaml-cpp, log4shib, pkgconfig, xercesc, xml-security-c, xml-tooling-c }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "shibboleth-sp-${version}";
|
||||||
|
version = "2.6.0";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "https://git.shibboleth.net/git/cpp-sp.git";
|
||||||
|
rev = "9ebba5c3a16d03769f436e383e4c4cdaa33f5509";
|
||||||
|
sha256 = "1b5r4nd098lnjwr2g13f04ycqv5fvbrhpwg6fsdk8xy9cigvfzxj";
|
||||||
|
};
|
||||||
|
|
||||||
|
# Needs pkgconfig to find systemd
|
||||||
|
buildInputs = [ boost fcgi openssl opensaml-cpp log4shib pkgconfig xercesc xml-security-c xml-tooling-c ];
|
||||||
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
|
|
||||||
|
configureFlags = [
|
||||||
|
"--without-apxs"
|
||||||
|
"--with-xmltooling=${xml-tooling-c}"
|
||||||
|
"--with-saml=${opensaml-cpp}"
|
||||||
|
"--with-fastcgi"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
home = https://shibboleth.net/products/service-provider.html;
|
||||||
|
description = "Enables SSO and Federation web applications written with any programming language or framework";
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -9839,6 +9839,8 @@ with pkgs;
|
|||||||
|
|
||||||
shapelib = callPackage ../development/libraries/shapelib { };
|
shapelib = callPackage ../development/libraries/shapelib { };
|
||||||
|
|
||||||
|
shibboleth-sp = callPackage ../development/libraries/shibboleth-sp { };
|
||||||
|
|
||||||
skalibs = callPackage ../development/libraries/skalibs { };
|
skalibs = callPackage ../development/libraries/skalibs { };
|
||||||
|
|
||||||
slang = callPackage ../development/libraries/slang { };
|
slang = callPackage ../development/libraries/slang { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user