gnome2.libIDL: fix cross

enable strictDeps

checked with diffing
This commit is contained in:
Artturin 2023-11-08 17:56:29 +02:00
parent 17012aa0d2
commit 4c1f023268

View File

@ -9,7 +9,15 @@ stdenv.mkDerivation rec {
sha256 = "08129my8s9fbrk0vqvnmx6ph4nid744g5vbwphzkaik51664vln5";
};
strictDeps = true;
buildInputs = [ glib gettext ];
nativeBuildInputs = [ flex bison pkg-config ];
configureFlags = lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
# before openembedded removed libIDL
# the result was always ll https://lists.openembedded.org/g/openembedded-core/topic/85775262?p=%2C%2C%2C20%2C0%2C0%2C0%3A%3A%2C%2C%2C0%2C0%2C0%2C85775262
"libIDL_cv_long_long_format=ll"
];
}