about summary refs log tree commit diff
path: root/third_party/gopkgs/golang.org/x/time/default.nix
blob: 6ccfc8a652ed0f4979fb27662fee8c69c9d9fbb8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ pkgs, ... }:

pkgs.buildGo.external {
  path = "golang.org/x/time";

  src = builtins.fetchGit {
    url = "https://go.googlesource.com/time";
    rev = "555d28b269f0569763d25dbe1a237ae74c6bcc82";
  };
}