diff options
author | Vincent Ambo <mail@tazj.in> | 2021-11-23T13·31+0300 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2021-11-23T14·42+0000 |
commit | 4f1249e46fb816cfd299ae27385a63746f914c3f (patch) | |
tree | 306e9d7f58a33397cc09bfb8bf4098856e1aafc2 /fun | |
parent | 5cad3f7b81b1460aeceb40936e0c7dcb029936a6 (diff) |
refactor(readTree): Move 'drvTargets' into readTree r/3088
This function is also generally useful for readTree consumers that have the concept of subtargets. Change-Id: Ic7fc03380dec6953fb288763a28e50ab3624d233
Diffstat (limited to 'fun')
-rw-r--r-- | fun/idual/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fun/idual/default.nix b/fun/idual/default.nix index 877ab7d3929d..0f87f4ae1a76 100644 --- a/fun/idual/default.nix +++ b/fun/idual/default.nix @@ -14,7 +14,7 @@ let }; package = python3Packages.buildPythonPackage opts; script = python3Packages.buildPythonApplication opts; -in depot.nix.utils.drvTargets { +in depot.nix.readTree.drvTargets { inherit script; python = python3.withPackages (_: [ package ]); setAlarm = pkgs.writeShellScriptBin "set-alarm" '' |