19 lines
497 B
Nix
19 lines
497 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/armon/go-metrics";
|
||
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
||
|
owner = "armon";
|
||
|
repo = "go-metrics";
|
||
|
rev = "v0.3.10";
|
||
|
hash = "sha256:07ycr1qswxx2r30r1dr27ggnjwxllcab17193sy2hfyps2ka31s2";
|
||
|
};
|
||
|
|
||
|
deps = with depot.third_party; [
|
||
|
gopkgs."github.com".hashicorp.go-immutable-radix
|
||
|
];
|
||
|
}
|