14 lines
412 B
Nix
14 lines
412 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/mitchellh/reflectwalk";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "mitchellh";
|
|
repo = "reflectwalk";
|
|
rev = "v1.0.2";
|
|
hash = "sha256:1nxgb4gskzv045539vb312n0a443308dvh1akz7vi6x1l0z46zsm";
|
|
};
|
|
}
|