about summary refs log tree commit diff
path: root/third_party/gopkgs/golang.org/x/sys/default.nix
blob: 5d1b26af486a958803b848712a524a8195d0b5f4 (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 = "fde4db37ae7ad8191b03d30d27f258b5291ae4e3";
  };

  deps = with pkgs.third_party; [
  ];
}