tvl-depot/users/wpcarro/tools/symlinkManager/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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
];
}