14 lines
416 B
Nix
14 lines
416 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/text";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "golang";
|
|
repo = "text";
|
|
rev = "a8b4671254579a87fadf9f7fa577dc7368e9d009";
|
|
sha256 = "1yhvfh3zi4xc2wlik21pwpfwrjq381zb3v3n6l12625fiiczrqqn";
|
|
};
|
|
}
|