summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorandromeda <andromeda@lenovo>2026-01-31 13:18:14 +0100
committerandromeda <andromeda@lenovo>2026-01-31 13:18:14 +0100
commit2b84809d8472b19e4e2d5adfc0cce81947071d46 (patch)
tree93e1594b793d09324dbdf3570da71406a9f6d6d0 /flake.nix
parent4858c3ee2ee3c4ca657405df6237f802df1a1e02 (diff)
build error
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index e19bbea..a315981 100644
--- a/flake.nix
+++ b/flake.nix
@@ -26,7 +26,9 @@
libXi,
xrandr,
# shell deps
+ clang,
hs-bindgen-cli,
+ tree,
}:
mkDerivation {
pname = "hs-rgfw";
@@ -44,9 +46,9 @@
libXi
xrandr
];
- preBuild = ''
+ preConfigure = ''
set -x
- export PATH=${hs-bindgen-cli}/bin:$PATH
+ export PATH=${clang}/bin:${hs-bindgen-cli}/bin:${tree}/bin:$PATH
./generate.sh
set +x
'';