blob: b1642e25e279d8ee894d8fcb10ae93da945530cb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ depot, ... }:
depot.nix.buildGo.external {
path = "github.com/google/uuid";
src = depot.third_party.fetchFromGitHub {
owner = "google";
repo = "uuid";
rev = "c2e93f3ae59f2904160ceaab466009f965df46d6";
sha256 = "0zw8fvl6jqg0fmv6kmvhss0g4gkrbvgyvl2zgy5wdbdlgp4fja0h";
};
}
|