try fix script

This commit is contained in:
2025-03-17 12:41:43 +04:00
parent 79bc2bcc72
commit 3db3606686
2 changed files with 4 additions and 3 deletions

View File

@@ -5,7 +5,8 @@
outputs = _: { outputs = _: {
lib = { lib = {
mkLib = pkgs: import ./lib.nix { inherit pkgs; }; mkLib = pkgs: pwd: import ./lib.nix { inherit pkgs pwd; };
}; };
}; };
} }

View File

@@ -1,7 +1,7 @@
{ pkgs }: { pkgs, pwd }:
let let
inherit (pkgs) lib; inherit (pkgs) lib;
runtime = builtins.toString ./. + "/.compose"; runtime = builtins.toString pwd + "/.compose";
in in
{ {
mkWrapper = mkWrapper =