about summary refs log blame commit diff
path: root/users/wpcarro/tools/monzo_ynab/job.nix
blob: c2c8baab3b45f5122ebe7ef3b1c29dcb5bfd86c2 (plain) (tree)
1
2
3
4
5
6
7
8
9
               
 


                                       



               
                       



         
{ depot, ... }:

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