aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index 1d741f7..c6d15f0 100644
--- a/flake.nix
+++ b/flake.nix
@@ -55,11 +55,12 @@
src = ./.;
buildInputs = devPackages;
buildPhase = ''
- dune build --profile-release
+ dune build --profile release
'';
installPhase = ''
- cp _build/install/default/bin/stitch/bin/stitch $out
+ echo "building to $out"
+ cp _build/install/default/bin/stitch/ $out
'';
};