1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00

opensaml-cpp: minor fixes to meta fields and parallel building

This commit is contained in:
Dan Peebles 2017-04-27 14:06:28 -04:00
parent 61f0c5e05e
commit 5d5c1ac8e5

View file

@ -15,9 +15,12 @@ stdenv.mkDerivation rec {
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";
};
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = "https://shibboleth.net/products/opensaml-cpp.html";
description = "A low-level library written in C++ that provides support for producing and consuming SAML messages";
platforms = platforms.unix;
license = licenses.asl20;
};
}