about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--nix/flake/packages.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nix/flake/packages.nix b/nix/flake/packages.nix
index 38e243f..4236fc1 100644
--- a/nix/flake/packages.nix
+++ b/nix/flake/packages.nix
@@ -1,4 +1,4 @@
-{ inputs, ... }: {
+{ inputs, self, ... }: {
   imports = [
     inputs.flake-parts.flakeModules.easyOverlay
   ];
@@ -10,7 +10,7 @@
     };
 
     packages = {
-      seqstat = pkgs.callPackage ../../tools/seqstat { };
+      seqstat = pkgs.callPackage "${self}/tools/seqstat" { };
     };
   };
 }