64654d1d6d
- Created a gopkgs directory and registered it with default.nix's readTree - Moved monzo_ynab/utils -> gopkgs - Consumed utils.go in main.go - Renamed monzo_ynab -> job
16 lines
206 B
Nix
16 lines
206 B
Nix
{
|
|
depot ? import <depot> {},
|
|
briefcase ? import <briefcase> {},
|
|
...
|
|
}:
|
|
|
|
depot.buildGo.program {
|
|
name = "job";
|
|
srcs = [
|
|
./main.go
|
|
];
|
|
deps = with briefcase.gopkgs; [
|
|
kv
|
|
utils
|
|
];
|
|
}
|