blob: 42d22c2bd5fe1d568110fb724b27761a78078b61 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
{ lib
, stdenv
, fetchurl
, withShishi ? !stdenv.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.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;
};
}
|