17 lines
502 B
Nix
17 lines
502 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/copystructure";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "mitchellh";
|
|
repo = "copystructure";
|
|
rev = "v1.2.0";
|
|
hash = "sha256:1izw243b3r03nvgnnxvk706l3s3v3q7k69kq3n4asnzjkcymq7sm";
|
|
};
|
|
deps = with depot.third_party; [
|
|
gopkgs."github.com".mitchellh.reflectwalk
|
|
];
|
|
}
|