biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / servers / http / apache-modules / mod_auth_mellon / default.nix
blob5dd2fee040e9bb0395780157c0461b650f5de650
1 { lib, stdenv, apacheHttpd, autoconf, automake, autoreconfHook, curl, fetchFromGitHub, glib, lasso, libtool, libxml2, libxslt, openssl, pkg-config, xmlsec }:
3 stdenv.mkDerivation rec {
5   pname = "mod_auth_mellon";
6   version = "0.19.0";
8   src = fetchFromGitHub {
9     owner = "latchset";
10     repo = "mod_auth_mellon";
11     rev = "v${version}";
12     sha256 = "sha256-frSfhddLfEZ2xSI7/HPZkr5AiTJ9nnYmnJZY8aC3zwI=";
13   };
15   nativeBuildInputs = [ autoreconfHook pkg-config autoconf automake ];
16   buildInputs = [ apacheHttpd curl glib lasso libtool libxml2 libxslt openssl xmlsec ];
18   configureFlags = ["--with-apxs2=${apacheHttpd.dev}/bin/apxs" "--exec-prefix=$out"];
20   installPhase = ''
21     mkdir -p $out/bin
22     cp ./mellon_create_metadata.sh $out/bin
23     mkdir -p $out/modules
24     cp ./.libs/mod_auth_mellon.so $out/modules
25   '';
27   meta = with lib; {
28     homepage = "https://github.com/latchset/mod_auth_mellon";
29     description = "An Apache module with a simple SAML 2.0 service provider";
30     mainProgram = "mellon_create_metadata.sh";
31     license = licenses.gpl2Plus;
32     platforms = platforms.linux;
33     maintainers = with maintainers; [ womfoo ];
34   };