tvl-depot/users/wpcarro/tools/monzo_ynab/job.nix

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

15 lines
186 B
Nix
Raw Normal View History

{ depot, ... }:
let
inherit (depot.users.wpcarro) gopkgs;
in depot.nix.buildGo.program {
name = "job";
srcs = [
./main.go
];
deps = with gopkgs; [
kv
utils
];
}