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