15 lines
421 B
Nix
15 lines
421 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/sync";
|
||
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
||
|
owner = "golang";
|
||
|
repo = "sync";
|
||
|
rev = "67f06af15bc961c363a7260195bcd53487529a21";
|
||
|
hash = "sha256:093p4panc808ak5bamzz7m9nb0xxib7778jpnr6f0xkz1n4fzyw5";
|
||
|
};
|
||
|
}
|