17 lines
229 B
Nix
17 lines
229 B
Nix
|
{
|
||
|
pkgs ? import <nixpkgs> {},
|
||
|
depot ? import <depot> {},
|
||
|
briefcase ? import <briefcase> {},
|
||
|
...
|
||
|
}:
|
||
|
|
||
|
depot.buildGo.program {
|
||
|
name = "run";
|
||
|
srcs = [
|
||
|
./main.go
|
||
|
];
|
||
|
deps = with briefcase.gopkgs; [
|
||
|
utils
|
||
|
];
|
||
|
}
|