tvl-depot/users/wpcarro/tools/run/default.nix

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

12 lines
158 B
Nix
Raw Normal View History

{ pkgs, depot, ... }:
depot.nix.buildGo.program {
name = "run";
srcs = [
./main.go
];
deps = with depot.users.wpcarro.gopkgs; [
utils
];
}