14 lines
426 B
Nix
14 lines
426 B
Nix
# SPDX-FileCopyrightText: 2020 Luke Granger-Brown <depot@lukegb.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
{ depot, ... }:
|
|
depot.third_party.buildGo.external {
|
|
path = "github.com/google/uuid";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "google";
|
|
repo = "uuid";
|
|
rev = "0e4e31197428a347842d152773b4cace4645ca25";
|
|
hash = "sha256:1rbpfa0v0ly9sdnixcxhf79swki54ikgm1zkwwkj64p1ws66syqd";
|
|
};
|
|
}
|