tvl-depot/users/Profpatsch/execline/default.nix
Vincent Ambo 4f1249e46f refactor(readTree): Move 'drvTargets' into readTree
This function is also generally useful for readTree consumers that
have the concept of subtargets.

Change-Id: Ic7fc03380dec6953fb288763a28e50ab3624d233
2021-11-23 14:42:08 +00:00

12 lines
224 B
Nix

{ depot, pkgs, lib, ... }:
let
exec-helpers = depot.nix.writers.rustSimpleLib {
name = "exec-helpers";
} (builtins.readFile ./exec_helpers.rs);
in depot.nix.readTree.drvTargets {
inherit
exec-helpers
;
}