forked from mirrors/nixpkgs
Merge pull request #148418 from gebner/fixm17nlib
m17n_lib: fix m17n-db support
This commit is contained in:
commit
94a6b1ede6
|
@ -11,9 +11,11 @@ stdenv.mkDerivation rec {
|
||||||
strictDeps = true;
|
strictDeps = true;
|
||||||
|
|
||||||
# reconf needed to sucesfully cross-compile
|
# reconf needed to sucesfully cross-compile
|
||||||
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
nativeBuildInputs = [
|
||||||
|
autoreconfHook pkg-config
|
||||||
buildInputs = [ m17n_db ];
|
# requires m17n-db tool at build time
|
||||||
|
m17n_db
|
||||||
|
];
|
||||||
|
|
||||||
# Fails parallel build due to missing intra-package depends:
|
# Fails parallel build due to missing intra-package depends:
|
||||||
# https://savannah.nongnu.org/bugs/index.php?61377
|
# https://savannah.nongnu.org/bugs/index.php?61377
|
||||||
|
|
Loading…
Reference in a new issue