14 lines
419 B
Nix
14 lines
419 B
Nix
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
{ depot, ... }:
|
|
depot.third_party.buildGo.external {
|
|
path = "golang.org/x/sys";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "golang";
|
|
repo = "sys";
|
|
rev = "da207088b7d1961c44ec61e9dc15a73745693ab6";
|
|
hash = "sha256:1i8q11i494cp3qia8w64k69wlcy4lgw9yya79yv85dz4brry29l8";
|
|
};
|
|
}
|