mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
adcli: fix and enable strictDeps for cross
This commit is contained in:
parent
042b910738
commit
81a9a5d4cc
1 changed files with 7 additions and 2 deletions
|
@ -29,6 +29,7 @@ stdenv.mkDerivation rec {
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
autoreconfHook
|
autoreconfHook
|
||||||
docbook_xsl
|
docbook_xsl
|
||||||
|
libxslt # xsltproc
|
||||||
pkg-config
|
pkg-config
|
||||||
util-linux
|
util-linux
|
||||||
xmlto
|
xmlto
|
||||||
|
@ -37,11 +38,15 @@ stdenv.mkDerivation rec {
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
cyrus_sasl
|
cyrus_sasl
|
||||||
libkrb5
|
libkrb5
|
||||||
libxslt
|
|
||||||
openldap
|
openldap
|
||||||
];
|
];
|
||||||
|
|
||||||
configureFlags = [ "--disable-debug" ];
|
strictDeps = true;
|
||||||
|
|
||||||
|
configureFlags = [
|
||||||
|
"--disable-debug"
|
||||||
|
"ac_cv_path_KRB5_CONFIG=${lib.getExe' (lib.getDev libkrb5) "krb5-config"}"
|
||||||
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace tools/Makefile.am \
|
substituteInPlace tools/Makefile.am \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue