about summary refs log tree commit diff
path: root/users/wpcarro/tools/monzo_ynab/job.nix
blob: c2c8baab3b45f5122ebe7ef3b1c29dcb5bfd86c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ depot, ... }:

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