gss: 1.0.3 -> 1.0.4
This commit is contained in:
parent
ab41e13f6c
commit
4f5c1ae47a
@ -1,18 +1,26 @@
|
|||||||
{ lib, stdenv, fetchurl
|
{ lib
|
||||||
, withShishi ? !stdenv.isDarwin, shishi
|
, stdenv
|
||||||
|
, fetchurl
|
||||||
|
, withShishi ? !stdenv.isDarwin
|
||||||
|
, shishi
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gss";
|
pname = "gss";
|
||||||
version = "1.0.3";
|
version = "1.0.4";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnu/gss/gss-${version}.tar.gz";
|
url = "mirror://gnu/gss/gss-${version}.tar.gz";
|
||||||
sha256 = "1syyvh3k659xf1hdv9pilnnhbbhs6vfapayp4xgdcc8mfgf9v4gz";
|
hash = "sha256-7M6r3vTK4/znIYsuy4PrQifbpEtTthuMKy6IrgJBnHM=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = lib.optional withShishi shishi;
|
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 = [
|
configureFlags = [
|
||||||
"--${if withShishi then "enable" else "disable"}-kerberos5"
|
"--${if withShishi then "enable" else "disable"}-kerberos5"
|
||||||
];
|
];
|
||||||
|
Loading…
Reference in New Issue
Block a user