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

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