checks/backup: no longer depend on self

This commit is contained in:
Jörg Thalheim
2025-07-07 21:45:06 +02:00
parent 3462d458ac
commit 7bc8e091a5

View File

@@ -19,10 +19,11 @@
... ...
}: }:
let let
dependencies = [ dependencies =
self [
pkgs.stdenv.drvPath pkgs.stdenv.drvPath
] ++ builtins.map (i: i.outPath) (builtins.attrValues self.inputs); ]
++ builtins.map (i: i.outPath) (builtins.attrValues (builtins.removeAttrs self.inputs [ "self" ]));
closureInfo = pkgs.closureInfo { rootPaths = dependencies; }; closureInfo = pkgs.closureInfo { rootPaths = dependencies; };
in in
{ {