From 5d5c1ac8e58491bc2c297a85be01b3785919820f Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Thu, 27 Apr 2017 14:06:28 -0400 Subject: [PATCH] opensaml-cpp: minor fixes to meta fields and parallel building --- pkgs/development/libraries/opensaml-cpp/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pkgs/development/libraries/opensaml-cpp/default.nix b/pkgs/development/libraries/opensaml-cpp/default.nix index 7a154c74239..9e3fbd15306 100644 --- a/pkgs/development/libraries/opensaml-cpp/default.nix +++ b/pkgs/development/libraries/opensaml-cpp/default.nix @@ -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; + }; }