about summary refs log tree commit diff
path: root/users/Profpatsch/execline/default.nix
blob: c852b82a86d0af593c8e1f720586c1068de56b4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ depot, pkgs, lib, ... }:

let
  exec-helpers = depot.users.Profpatsch.writers.rustSimpleLib {
    name = "exec-helpers";
  } (builtins.readFile ./exec_helpers.rs);

in depot.nix.utils.drvTargets {
  inherit
    exec-helpers
    ;
}