tvl-depot/fun/watchblob/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
206 B
Nix
Raw Normal View History

{ 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
];
}