1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00

Fix cross builds

This commit is contained in:
Jacek Galowicz 2023-12-02 16:08:06 +00:00
parent eff9b12bc2
commit 2c3749a335

View file

@ -123,6 +123,10 @@ stdenv.mkDerivation (finalAttrs: {
openssl
sqlite
xz
# These could be checkInputs but the configure phase fails w/o them
gtest
rapidcheck
]
++ lib.optional stdenv.isLinux libseccomp
++ lib.optional stdenv.hostPlatform.isx86_64 libcpuid
@ -137,14 +141,13 @@ stdenv.mkDerivation (finalAttrs: {
doCheck = true;
checkInputs = [
gtest
rapidcheck
# see buildInputs. The configure script always wants its test libs
];
nativeCheckInputs = [
git
mercurial # FIXME: remove? only needed for tests
openssh # only needed for tests (ssh-keygen)
mercurial
openssh
];
propagatedBuildInputs = [