blob: 8636a9913e5dff22c61fca0ad3041daa64a3620b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
{ depot, ... }:
depot.nix.buildGo.external {
path = "golang.org/x/sys";
src = builtins.fetchGit {
url = "https://go.googlesource.com/sys";
rev = "ac6580df4449443a05718fd7858c1f91ad5f8d20";
};
}
|