tvl-depot/monzo_ynab/job.nix

17 lines
206 B
Nix
Raw Normal View History

{
depot ? import <depot> {},
briefcase ? import <briefcase> {},
...
}:
depot.buildGo.program {
name = "job";
srcs = [
./main.go
];
deps = with briefcase.gopkgs; [
kv
utils
];
}