blob: 1f75b97591fc7bad7461e3bf06dac0ce05b5026e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ 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
;
}
|