blob: f6107e63878bdcae001cc0af2e06c3740128e7d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ pkgs, ... }:
pkgs.buildGo.external {
path = "golang.org/x/text";
src = builtins.fetchGit {
url = "https://go.googlesource.com/text";
rev = "342b2e1fbaa52c93f31447ad2c6abc048c63e475";
};
deps = with pkgs.third_party; [
];
}
|