Archived
1
0
forked from rarias/bscpkgs

Migrate inputs to native build inputs

This commit is contained in:
2025-07-01 15:18:09 +02:00
parent 96661ca763
commit 77ddd1c9c1

View File

@@ -59,7 +59,7 @@ in stdenv.mkDerivation {
inherit gcc zlib;
};
buildInputs = [
nativeBuildInputs = [
which
bash
python3
@@ -67,9 +67,13 @@ in stdenv.mkDerivation {
cmake
llvmPackages_latest.lld
elfutils
libffi
pkg-config
zlib
];
buildInputs = [
libffi
zlib
gcc.cc.lib # Required for libstdc++.so.6
];