forked from mirrors/nixpkgs
lasso: init at 2.5.1
This commit is contained in:
parent
cc41cb30e3
commit
a6734bdd27
31
pkgs/development/libraries/lasso/default.nix
Normal file
31
pkgs/development/libraries/lasso/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ stdenv, autoconf, automake, autoreconfHook, fetchurl, glib, gobjectIntrospection, gtk_doc, libtool, libxml2, libxslt, openssl, pkgconfig, python27Packages, xmlsec, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
name = "lasso-${version}";
|
||||
version = "2.5.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://dev.entrouvert.org/lasso/lasso-${version}.tar.gz";
|
||||
sha256 = "0n10zjjw84303c9vfy9bqhyzdl01459akbwy86cbgphd826mq45y";
|
||||
|
||||
};
|
||||
|
||||
buildInputs = [ autoconf automake autoreconfHook glib gobjectIntrospection gtk_doc libtool libxml2 libxslt openssl pkgconfig python27Packages.six xmlsec zlib ];
|
||||
|
||||
configurePhase = ''
|
||||
./configure --with-pkg-config=$PKG_CONFIG_PATH \
|
||||
--disable-python \
|
||||
--disable-perl \
|
||||
--prefix=$out
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://lasso.entrouvert.org/;
|
||||
description = "Liberty Alliance Single Sign-On library";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ womfoo ];
|
||||
};
|
||||
|
||||
}
|
|
@ -7430,6 +7430,8 @@ in
|
|||
};
|
||||
libkrb5 = self.krb5Full.override { type = "lib"; };
|
||||
|
||||
lasso = callPackage ../development/libraries/lasso { };
|
||||
|
||||
LASzip = callPackage ../development/libraries/LASzip { };
|
||||
|
||||
lcms = self.lcms1;
|
||||
|
|
Loading…
Reference in a new issue