revert for paths that aren't the root dir, i.e. not sensitive to root name change

This commit is contained in:
Kiara Grouwstra 2025-06-16 13:09:52 +02:00
parent 5e887094c3
commit 10d2ab39d0
Signed by: kiara
SSH key fingerprint: SHA256:COspvLoLJ5WC5rFb9ZDe5urVCkK4LJZOsjfF4duRJFU
3 changed files with 3 additions and 14 deletions

View file

@ -57,12 +57,7 @@ in
## function calls. ## function calls.
makeTestDeployment = makeTestDeployment =
args: args:
(import ( (import ../..)
builtins.path {
path = ../..;
name = "source";
}
))
{ {
inherit lib; inherit lib;
inherit (inputs) nixops4 nixops4-nixos; inherit (inputs) nixops4 nixops4-nixos;

View file

@ -19,10 +19,7 @@ let
extraPython3Packages = extraPython3Packages =
let let
dir = builtins.path { dir = toString ./.;
path = ./.;
name = "source";
};
in in
with builtins; with builtins;
listToAttrs ( listToAttrs (

View file

@ -1,4 +1 @@
(import (builtins.path { (import ./. { }).shell
path = ./.;
name = "source";
}) { }).shell