15 lines
414 B
Nix
15 lines
414 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/mapstructure";
|
||
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
||
|
owner = "mitchellh";
|
||
|
repo = "mapstructure";
|
||
|
rev = "v1.4.3";
|
||
|
hash = "sha256:0crp7zd5qlvka5pyr42i16ag4dh1swdlzw6pc67i441b33yqbnys";
|
||
|
};
|
||
|
}
|