about summary refs log tree commit diff
path: root/third_party/gopkgs/golang.org/x/sys/default.nix
blob: 0371160099620a7a30dd816020173f0c3736559e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs, ... }:

pkgs.buildGo.external {
  path = "golang.org/x/sys";
  src = builtins.fetchGit {
    url = "https://go.googlesource.com/sys";
    rev = "ac6580df4449443a05718fd7858c1f91ad5f8d20";
  };

  deps = with pkgs.third_party; [
  ];
}