9 lines
218 B
Nix
9 lines
218 B
Nix
{ depot, ... }:
|
|
|
|
depot.buildGo.external {
|
|
path = "github.com/golang/protobuf";
|
|
src = builtins.fetchGit {
|
|
url = "https://github.com/golang/protobuf";
|
|
rev = "ed6926b37a637426117ccab59282c3839528a700";
|
|
};
|
|
}
|