14 lines
385 B
Nix
14 lines
385 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 = "v0.4.0";
|
|
hash = "sha256:0fr2d6fnpbqx6n89sg9lsinqkdaw49y068kqj2g0cxlhbh69hzii";
|
|
};
|
|
}
|