blob: 2a9a4da56b8df0a5002dfd3fd91d39f9fbe4b09b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
{ depot, ... }:
depot.nix.buildGo.external {
path = "golang.org/x/time";
src = builtins.fetchGit {
url = "https://go.googlesource.com/time";
rev = "555d28b269f0569763d25dbe1a237ae74c6bcc82";
};
}
|