tvl-depot/fun/clbot/backoffutil/default.nix

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

15 lines
239 B
Nix
Raw Normal View History

{ depot, ... }:
let
inherit (depot.third_party) gopkgs;
in
depot.nix.buildGo.package {
name = "code.tvl.fyi/fun/clbot/backoffutil";
srcs = [
./backoffutil.go
];
deps = [
gopkgs."github.com".cenkalti.backoff.gopkg
];
}