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

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

60 lines
1.1 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";
2023-04-30 04:34:51 +00:00
version = "2.8.2";
2016-01-17 09:55:13 +00:00
src = fetchurl {
url = "https://dev.entrouvert.org/lasso/lasso-${version}.tar.gz";
2023-04-30 04:34:51 +00:00
hash = "sha256-ahgxv9v49CTHUIq6R7BF1RNB7A/ekSLziwuGsJbvUz4=";
2016-01-17 09:55:13 +00:00
};
2022-04-21 22:18:42 +00:00
nativeBuildInputs = [
autoreconfHook
pkg-config
python3
gobject-introspection
2022-04-21 22:18:42 +00:00
];
buildInputs = [
glib
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";
2023-04-30 04:35:00 +00:00
changelog = "https://git.entrouvert.org/entrouvert/lasso/raw/tag/v${version}/ChangeLog";
2016-01-17 09:55:13 +00:00
license = licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ womfoo ];
};
}