From 7c2419df764cf22613bbb7d1aa6b9ea38efa4f2e Mon Sep 17 00:00:00 2001 From: Dan Peebles Date: Thu, 27 Apr 2017 14:06:41 -0400 Subject: [PATCH] shibboleth-sp: minor fixes --- pkgs/development/libraries/shibboleth-sp/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/shibboleth-sp/default.nix b/pkgs/development/libraries/shibboleth-sp/default.nix index 05b12c317696..de6d6544c13f 100644 --- a/pkgs/development/libraries/shibboleth-sp/default.nix +++ b/pkgs/development/libraries/shibboleth-sp/default.nix @@ -10,7 +10,6 @@ stdenv.mkDerivation rec { sha256 = "1b5r4nd098lnjwr2g13f04ycqv5fvbrhpwg6fsdk8xy9cigvfzxj"; }; - # Needs pkgconfig to find systemd buildInputs = [ boost fcgi openssl opensaml-cpp log4shib pkgconfig xercesc xml-security-c xml-tooling-c ]; nativeBuildInputs = [ autoreconfHook ]; @@ -21,9 +20,12 @@ stdenv.mkDerivation rec { "--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"; - }; + enableParallelBuilding = true; + meta = with stdenv.lib; { + homepage = "https://shibboleth.net/products/service-provider.html"; + description = "Enables SSO and Federation web applications written with any programming language or framework"; + platforms = platforms.unix; + license = licenses.asl20; + }; }