about summary refs log tree commit diff
path: root/tools/rfcToKindle/default.nix
blob: 3bfa71f2896dd6a56bb94c328cc383ce3929c90d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{
  depot ? import <depot> {}, ...
}:

# TODO: This doesn't depend on `sendgmr` at the moment, but it should. As such,
# it's an imcomplete packaging.
depot.buildGo.program {
  name = "rfcToKindle";
  srcs = [
    ./main.go
  ];
  deps = [];
}