blob: 4e261d73093263fefe40140b9310efa206f9445f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ depot, ... }:
let
inherit (depot.users.wpcarro) gopkgs;
in depot.nix.buildGo.program {
name = "symlink-mgr";
srcs = [
./main.go
];
deps = with gopkgs; [
utils
];
}
|