1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{ depot, pkgs, ... }:
# Shared library for capability token operations
# Provides canonical serialization, path normalization, and token type definitions
depot.nix.buildGo.package {
name = "capability-tokens-lib";
srcs = [
./canonical.go
./path.go
./types.go
./verify.go
];
path = "capability-tokens-lib";
}
|