9e0fdd3973
I'm not sure if this commit breaks everything in my monorepo. I think it will. Why am I doing this? Perhaps it's a bad idea. I don't fully understand how readTree works. My ignorance is costing me hours of time spent debugging. In an effort to better understand readTree, I'm removing the default values for my Nix expression parameters, which I believe have preventing errors from surfacing.
23 lines
331 B
Nix
23 lines
331 B
Nix
{ depot, briefcase, ... }:
|
|
|
|
let
|
|
auth = depot.buildGo.package {
|
|
name = "auth";
|
|
srcs = [
|
|
./auth.go
|
|
];
|
|
deps = with briefcase.gopkgs; [
|
|
utils
|
|
];
|
|
};
|
|
in depot.buildGo.program {
|
|
name = "token-server";
|
|
srcs = [
|
|
./tokens.go
|
|
];
|
|
deps = with briefcase.gopkgs; [
|
|
kv
|
|
utils
|
|
auth
|
|
];
|
|
}
|