14 lines
398 B
Nix
14 lines
398 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-radix";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "armon";
|
|
repo = "go-radix";
|
|
rev = "v1.0.0";
|
|
hash = "sha256:1m1k0jz9gjfrk4m7hjm7p03qmviamfgxwm2ghakqxw3hdds8v503";
|
|
};
|
|
}
|