nixpkgs/pkgs/development/libraries/lasso/default.nix

33 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, autoconf, automake, autoreconfHook, fetchurl, glib, gobject-introspection, gtk-doc, libtool, libxml2, libxslt, openssl, pkgconfig, python27Packages, xmlsec, zlib }:
2016-01-17 10:55:13 +01:00
stdenv.mkDerivation rec {
pname = "lasso";
2020-05-05 18:17:49 +02:00
version = "2.6.1";
2016-01-17 10:55:13 +01:00
src = fetchurl {
url = "https://dev.entrouvert.org/lasso/lasso-${version}.tar.gz";
2020-05-05 18:17:49 +02:00
sha256 = "1pniisy4z9cshf6lvlz28kfa3qnwnhldb2rvkjxzc0l84g7dpa7q";
2016-01-17 10:55:13 +01:00
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ autoconf automake glib gobject-introspection gtk-doc libtool libxml2 libxslt openssl python27Packages.six xmlsec zlib ];
2016-01-17 10:55:13 +01:00
configurePhase = ''
./configure --with-pkg-config=$PKG_CONFIG_PATH \
--disable-python \
--disable-perl \
--prefix=$out
'';
meta = with stdenv.lib; {
homepage = "https://lasso.entrouvert.org/";
2016-01-17 10:55:13 +01:00
description = "Liberty Alliance Single Sign-On library";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ womfoo ];
};
}