mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
69 lines
1.4 KiB
Nix
69 lines
1.4 KiB
Nix
{ lib, stdenv
|
|
, autoreconfHook
|
|
, fetchurl
|
|
, fetchpatch
|
|
, glib
|
|
, gobject-introspection
|
|
, gtk-doc
|
|
, libtool
|
|
, libxml2
|
|
, libxslt
|
|
, openssl
|
|
, pkg-config
|
|
, python3
|
|
, xmlsec
|
|
, zlib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "lasso";
|
|
version = "2.8.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://dev.entrouvert.org/lasso/lasso-${version}.tar.gz";
|
|
hash = "sha256-ahgxv9v49CTHUIq6R7BF1RNB7A/ekSLziwuGsJbvUz4=";
|
|
};
|
|
|
|
patches = [
|
|
# Fix build with xmlsec 1.3.0
|
|
(fetchpatch {
|
|
url = "https://git.entrouvert.org/entrouvert/lasso/commit/ffaddeb015a61db3e52c391de00430107a23e2f1.patch";
|
|
hash = "sha256-D2npxpIuR/KrNYiKO3KXCvHEb/XVXUKIP0HQUd+w56k=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
pkg-config
|
|
python3
|
|
gobject-introspection
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
gtk-doc
|
|
libtool
|
|
libxml2
|
|
libxslt
|
|
openssl
|
|
python3.pkgs.six
|
|
xmlsec
|
|
zlib
|
|
];
|
|
|
|
configurePhase = ''
|
|
./configure --with-pkg-config=$PKG_CONFIG_PATH \
|
|
--disable-perl \
|
|
--prefix=$out
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://lasso.entrouvert.org/";
|
|
description = "Liberty Alliance Single Sign-On library";
|
|
changelog = "https://git.entrouvert.org/entrouvert/lasso/raw/tag/v${version}/ChangeLog";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ womfoo ];
|
|
};
|
|
}
|