summary refs log tree commit diff
path: root/pkgs/development/libraries/shibboleth-sp
diff options
context:
space:
mode:
authorDan Peebles <pumpkin@me.com>2017-04-27 14:06:41 -0400
committerDan Peebles <pumpkin@me.com>2017-04-27 14:06:41 -0400
commit7c2419df764cf22613bbb7d1aa6b9ea38efa4f2e (patch)
treebd43b3d73906e625156400558fdbf42589d48851 /pkgs/development/libraries/shibboleth-sp
parent5d5c1ac8e58491bc2c297a85be01b3785919820f (diff)
downloadnixlib-7c2419df764cf22613bbb7d1aa6b9ea38efa4f2e.tar
nixlib-7c2419df764cf22613bbb7d1aa6b9ea38efa4f2e.tar.gz
nixlib-7c2419df764cf22613bbb7d1aa6b9ea38efa4f2e.tar.bz2
nixlib-7c2419df764cf22613bbb7d1aa6b9ea38efa4f2e.tar.lz
nixlib-7c2419df764cf22613bbb7d1aa6b9ea38efa4f2e.tar.xz
nixlib-7c2419df764cf22613bbb7d1aa6b9ea38efa4f2e.tar.zst
nixlib-7c2419df764cf22613bbb7d1aa6b9ea38efa4f2e.zip
shibboleth-sp: minor fixes
Diffstat (limited to 'pkgs/development/libraries/shibboleth-sp')
-rw-r--r--pkgs/development/libraries/shibboleth-sp/default.nix10
1 files changed, 6 insertions, 4 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;
+  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;
   };
-
 }