depot/third_party/nixpkgs/pkgs/development/libraries/gss/default.nix
Default email 7e47f3658e Project import generated by Copybara.
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
2024-09-26 11:04:55 +00:00

47 lines
1.2 KiB
Nix

{ lib
, stdenv
, fetchurl
, withShishi ? !stdenv.hostPlatform.isDarwin
, shishi
}:
stdenv.mkDerivation rec {
pname = "gss";
version = "1.0.4";
src = fetchurl {
url = "mirror://gnu/gss/gss-${version}.tar.gz";
hash = "sha256-7M6r3vTK4/znIYsuy4PrQifbpEtTthuMKy6IrgJBnHM=";
};
# krb5context test uses certificates that expired on 2024-07-11.
# Reported to bug-gss@gnu.org with Message-ID: <87cyngavtt.fsf@alyssa.is>.
postPatch = ''
rm tests/krb5context.c
'';
buildInputs = lib.optional withShishi shishi;
# ./stdint.h:89:5: error: expected value in expression
preConfigure = lib.optionalString stdenv.hostPlatform.isDarwin ''
export GNULIBHEADERS_OVERRIDE_WINT_T=0
'';
configureFlags = [
"--${if withShishi then "enable" else "disable"}-kerberos5"
];
# Fixup .la files
postInstall = lib.optionalString withShishi ''
sed -i 's,\(-lshishi\),-L${shishi}/lib \1,' $out/lib/libgss.la
'';
meta = with lib; {
homepage = "https://www.gnu.org/software/gss/";
description = "Generic Security Service";
mainProgram = "gss";
license = licenses.gpl3Plus;
maintainers = [ ];
platforms = platforms.all;
};
}