248c7a24c6
- Package tokens.go with Nix - Add monzo_ynab.{job,tokens} to shell.nix
15 lines
207 B
Nix
15 lines
207 B
Nix
{
|
|
depot ? import <depot> {},
|
|
briefcase ? import <briefcase> {},
|
|
...
|
|
}:
|
|
|
|
depot.buildGo.program {
|
|
name = "token-server";
|
|
srcs = [
|
|
./tokens.go
|
|
];
|
|
deps = with briefcase.gopkgs; [
|
|
kv
|
|
];
|
|
}
|