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:
parent
61f0c5e05e
commit
5d5c1ac8e5
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue