tvl-depot/tools/symlinkManager/default.nix

12 lines
157 B
Nix
Raw Normal View History

{ depot, briefcase, ... }:
depot.buildGo.program {
name = "symlink-mgr";
srcs = [
./main.go
];
deps = with briefcase.gopkgs; [
utils
];
}