nixpkgs/pkgs/development/libraries/shibboleth-sp/default.nix

33 lines
1.0 KiB
Nix
Raw Normal View History

2017-04-26 21:08:46 +00:00
{ stdenv, fetchgit, autoreconfHook, boost, fcgi, openssl, opensaml-cpp, log4shib, pkgconfig, xercesc, xml-security-c, xml-tooling-c }:
stdenv.mkDerivation rec {
pname = "shibboleth-sp";
2019-07-29 22:06:12 +00:00
version = "3.0.4.1";
2017-04-26 21:08:46 +00:00
src = fetchgit {
url = "https://git.shibboleth.net/git/cpp-sp.git";
rev = version;
2019-07-29 22:06:12 +00:00
sha256 = "1qb4dbz5gk10b9w1rf6f4vv7c2wb3a8bfzif6yiaq96ilqad7gdr";
2017-04-26 21:08:46 +00:00
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ boost fcgi openssl opensaml-cpp log4shib xercesc xml-security-c xml-tooling-c ];
2017-04-26 21:08:46 +00:00
configureFlags = [
"--without-apxs"
"--with-xmltooling=${xml-tooling-c}"
"--with-saml=${opensaml-cpp}"
"--with-fastcgi"
];
2017-04-27 18:06:41 +00:00
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = "https://shibboleth.net/products/service-provider.html";
2017-04-26 21:08:46 +00:00
description = "Enables SSO and Federation web applications written with any programming language or framework";
2017-04-27 18:06:41 +00:00
platforms = platforms.unix;
license = licenses.asl20;
maintainers = [ maintainers.jammerful ];
2017-04-26 21:08:46 +00:00
};
}