linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / lasso / default.nix
blob24efa689c5811001d1fe19142ce813de79325f1d
1 { lib, stdenv, autoconf, automake, autoreconfHook, fetchurl, glib, gobject-introspection, gtk-doc, libtool, libxml2, libxslt, openssl, pkg-config, python27Packages, xmlsec, zlib }:
3 stdenv.mkDerivation rec {
5   pname = "lasso";
6   version = "2.6.1";
8   src = fetchurl {
9     url = "https://dev.entrouvert.org/lasso/lasso-${version}.tar.gz";
10     sha256 = "1pniisy4z9cshf6lvlz28kfa3qnwnhldb2rvkjxzc0l84g7dpa7q";
12   };
14   nativeBuildInputs = [ autoreconfHook pkg-config ];
15   buildInputs = [ autoconf automake glib gobject-introspection gtk-doc libtool libxml2 libxslt openssl python27Packages.six xmlsec zlib ];
17   configurePhase = ''
18     ./configure --with-pkg-config=$PKG_CONFIG_PATH \
19                 --disable-python \
20                 --disable-perl \
21                 --prefix=$out
22   '';
24   meta = with lib; {
25     homepage = "https://lasso.entrouvert.org/";
26     description = "Liberty Alliance Single Sign-On library";
27     license = licenses.gpl2Plus;
28     platforms = platforms.linux;
29     maintainers = with maintainers; [ womfoo ];
30   };