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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
1.0 KiB
Nix
Raw Normal View History

2022-04-21 22:18:42 +00:00
{ lib, stdenv
, autoreconfHook
, fetchurl
, glib
, gobject-introspection
, gtk-doc
, libtool
, libxml2
, libxslt
, openssl
, pkg-config
, python3
, xmlsec
, zlib
}:
2016-01-17 09:55:13 +00:00
stdenv.mkDerivation rec {
pname = "lasso";
2022-03-16 17:17:02 +00:00
version = "2.8.0";
2016-01-17 09:55:13 +00:00
src = fetchurl {
url = "https://dev.entrouvert.org/lasso/lasso-${version}.tar.gz";
2022-04-21 22:18:42 +00:00
hash = "sha256-/8vVhR2YWGx+HK9DutZhZCEaO2HRK/hgoFmESP+fKzg=";
2016-01-17 09:55:13 +00:00
};
2022-04-21 22:18:42 +00:00
nativeBuildInputs = [
autoreconfHook
pkg-config
python3
];
buildInputs = [
glib
gobject-introspection
gtk-doc
libtool
libxml2
libxslt
openssl
python3.pkgs.six
xmlsec
zlib
];
2016-01-17 09:55:13 +00:00
configurePhase = ''
./configure --with-pkg-config=$PKG_CONFIG_PATH \
--disable-perl \
--prefix=$out
'';
meta = with lib; {
homepage = "https://lasso.entrouvert.org/";
2016-01-17 09:55:13 +00:00
description = "Liberty Alliance Single Sign-On library";
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ womfoo ];
};
}