We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc05a82 commit dda7d84Copy full SHA for dda7d84
flake.nix
@@ -88,10 +88,7 @@
88
89
gnativeBuildInputs = with pkgs; [
90
python3
91
- gdb
92
- git
93
qemu-user
94
- clang-tools
95
];
96
97
mkFina = name: target:
@@ -160,7 +157,12 @@
160
157
libffi = if name == "cosmo" then libffi-cosmo else crossPkgs.pkgsStatic.libffi;
161
158
in
162
159
crossPkgs.mkShell {
163
- nativeBuildInputs = gnativeBuildInputs ++ [ libffi ];
+ nativeBuildInputs = with pkgs; gnativeBuildInputs ++ [
+ clang-tools
+ libffi
+ gdb
164
+ git
165
+ ];
166
shellHook = ''
167
export CPPFLAGS=-I${libffi.dev}/include
168
export LDFLAGS=-L${libffi.out}/lib
0 commit comments