mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
ff323ed355
via: `find pkgs/ -type f -exec sed -i 's/vendorSha256 = "sha256/vendorHash = "sha256/' {};`
30 lines
678 B
Nix
30 lines
678 B
Nix
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
buildGoModule rec {
|
|
pname = "jmespath";
|
|
version = "0.4.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jmespath";
|
|
repo = "go-jmespath";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-djA/7TCmAqCsht28b1itoiWd8Mtdsn/5uLxyT23K/qM=";
|
|
};
|
|
|
|
vendorHash = "sha256-Q12muprcKB7fCxemESb4sGPyYIdmgOt3YXVUln7oabw=";
|
|
|
|
excludedPackages = [
|
|
"./internal/testify"
|
|
];
|
|
|
|
ldflags = [ "-s" "-w" ];
|
|
|
|
meta = with lib; {
|
|
description = "A JMESPath implementation in Go";
|
|
homepage = "https://github.com/jmespath/go-jmespath";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ cransom ];
|
|
mainProgram = "jpgo";
|
|
};
|
|
}
|