blob: 409b0d0b9e2e4de4a7585ec54330c7f8fb256b8b (
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 = "cbf43d21aaebfdfeb81d91a5f444d13a3046e686";
};
deps = with pkgs.third_party; [
];
}
|