12088dc998
Diff: https://github.com/mikefarah/yq/compare/v4.33.1...v4.33.2 Changelog: https://github.com/mikefarah/yq/raw/v4.33.2/release_notes.txt
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, runCommand, yq-go }:
|
|
|
|
buildGoModule rec {
|
|
pname = "yq-go";
|
|
version = "4.33.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mikefarah";
|
|
repo = "yq";
|
|
rev = "v${version}";
|
|
hash = "sha256-z4TSc6thjWoaucx2RBDDqK+f6689cympifGzzF4N07E=";
|
|
};
|
|
|
|
vendorHash = "sha256-aaQxW8fvDaOb49rsTw92WVWgtbJJHH7e92ChuhKI4ME=";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd yq \
|
|
--bash <($out/bin/yq shell-completion bash) \
|
|
--fish <($out/bin/yq shell-completion fish) \
|
|
--zsh <($out/bin/yq shell-completion zsh)
|
|
'';
|
|
|
|
passthru.tests = {
|
|
simple = runCommand "${pname}-test" {} ''
|
|
echo "test: 1" | ${yq-go}/bin/yq eval -j > $out
|
|
[ "$(cat $out | tr -d $'\n ')" = '{"test":1}' ]
|
|
'';
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Portable command-line YAML processor";
|
|
homepage = "https://mikefarah.gitbook.io/yq/";
|
|
changelog = "https://github.com/mikefarah/yq/raw/v${version}/release_notes.txt";
|
|
mainProgram = "yq";
|
|
license = [ licenses.mit ];
|
|
maintainers = with maintainers; [ lewo SuperSandro2000 ];
|
|
};
|
|
}
|