tvl-depot/users/Profpatsch/execline/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
221 B
Nix
Raw Normal View History

{ 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
;
}