mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 08:13:04 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
44 lines
999 B
Nix
44 lines
999 B
Nix
{ 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=";
|
|
};
|
|
|
|
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"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
# 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 = with maintainers; [ ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|