tvl-depot/users/Profpatsch/execline/default.nix
Profpatsch eb41eef612 chore(nix): move rustSimple from users.Profpatsch.writers
I think it’s solid enough to use in a wider context.

Change-Id: If53e8bbb6b90fa88d73fb42730db470e822ea182
Reviewed-on: https://cl.tvl.fyi/c/depot/+/3055
Tested-by: BuildkiteCI
Reviewed-by: sterni <sternenseemann@systemli.org>
Reviewed-by: lukegb <lukegb@tvl.fyi>
2021-04-24 10:23:55 +00:00

12 lines
221 B
Nix

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