about summary refs log tree commit diff
path: root/fun/watchblob/default.nix
blob: dc32e4d1cefb09a377a9b35f689de6f080b829ff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ depot, ... }:

depot.nix.buildGo.program {
  name = "watchblob";
  srcs = [
    ./main.go
    ./urls.go
  ];

  deps = with depot.third_party; [
    gopkgs."golang.org".x.crypto.ssh.terminal.gopkg
  ];
}