summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--flake.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 010ff71..7d5416c 100644
--- a/flake.nix
+++ b/flake.nix
@@ -20,6 +20,7 @@
buildInputs = with pkgs; [
cjson
+ nix-eval-jobs
pkg-config
meson
@@ -46,11 +47,17 @@
meson
ninja
pkg-config
+ makeWrapper
];
buildInputs = with pkgs; [
cjson
];
+ postInstall = ''
+ wrapProgram $out/bin/evanix \
+ --prefix PATH : ${lib.makeBinPath [ pkgs.nix-eval-jobs ]}
+ '';
+
meta = {
homepage = "https://git.sinanmohd.com/evanix";