summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2026-06-09 19:21:15 -0400
committerLLLL Colonq <llll@colonq>2026-06-09 19:21:15 -0400
commit2bed368821af4fcb06435bfe849332f5a813e470 (patch)
treeade669c99c4177500d414f50f1c65755b09fce7e /flake.nix
parent18d2f8acc71ca5ee4065555956f9c2913ca682c3 (diff)
Install headers
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 5bfed59..1a57d6f 100644
--- a/flake.nix
+++ b/flake.nix
@@ -31,7 +31,7 @@
make CC=wasm32-clang libcolonq-pit.a
'';
installPhase = ''
- make CC=wasm32-clang prefix=$out install-core
+ make CC=wasm32-clang prefix=$out install-core install-headers
'';
};
pit-arm = pkgs.pkgsCross.arm-embedded.stdenv.mkDerivation {
@@ -43,7 +43,7 @@
make CC=arm-none-eabi-gcc AR=arm-none-eabi-ar libcolonq-pit.a
'';
installPhase = ''
- make CC=arm-none-eabi-gcc AR=arm-none-eabi-ar prefix=$out install-core
+ make CC=arm-none-eabi-gcc AR=arm-none-eabi-ar prefix=$out install-core install-headers
'';
};
pit-windows = pkgs.pkgsCross.mingwW64.stdenv.mkDerivation {