From e201b01369f3e2cfa56cb203b9df4596962a09b7 Mon Sep 17 00:00:00 2001 From: Nikkuss Date: Mon, 17 Mar 2025 13:09:28 +0400 Subject: [PATCH] fix script --- lib.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib.nix b/lib.nix index bee8fb1..b83cbc7 100644 --- a/lib.nix +++ b/lib.nix @@ -1,7 +1,8 @@ { pkgs }: let inherit (pkgs) lib; - runtime = ".compose"; + pwd = pkgs.runCommand "pwd" { } "realpath .compose>$out"; + runtime = builtins.readFile pwd; in { mkWrapper =