14 lines
410 B
Nix
14 lines
410 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/jmespath/go-jmespath";
|
|
src = depot.third_party.nixpkgs.fetchFromGitHub {
|
|
owner = "jmespath";
|
|
repo = "go-jmespath";
|
|
rev = "v0.4.0";
|
|
hash = "sha256:18zyr9nlywmwp3wpzcjxrgq9s9d2mmc6zg6xhsna00m663nkyc3n";
|
|
};
|
|
}
|