mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
0498ccd076
HTTP -> HTTPS for : - http://gnu.org/ - http://www.gnu.org/ - http://elpa.gnu.org/ - http://lists.gnu.org/ - http://gcc.gnu.org/ - http://ftp.gnu.org/ (except in fetchurl mirrors) - http://bugs.gnu.org/
36 lines
873 B
Nix
36 lines
873 B
Nix
{ stdenv, fetchurl
|
|
, withShishi ? !stdenv.isDarwin, shishi ? null
|
|
}:
|
|
|
|
assert withShishi -> shishi != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gss-1.0.3";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/gss/${name}.tar.gz";
|
|
sha256 = "1syyvh3k659xf1hdv9pilnnhbbhs6vfapayp4xgdcc8mfgf9v4gz";
|
|
};
|
|
|
|
buildInputs = stdenv.lib.optional withShishi shishi;
|
|
|
|
configureFlags = [
|
|
"--${if withShishi != null then "enable" else "disable"}-kereberos5"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
# Fixup .la files
|
|
postInstall = stdenv.lib.optionalString withShishi ''
|
|
sed -i 's,\(-lshishi\),-L${shishi}/lib \1,' $out/lib/libgss.la
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.gnu.org/software/gss/;
|
|
description = "Generic Security Service";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ bjg wkennington ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|