2021-04-12 18:23:04 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, runCommand, yq-go }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "yq-go";
|
2022-11-21 17:40:18 +00:00
|
|
|
version = "4.30.4";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mikefarah";
|
|
|
|
repo = "yq";
|
2021-08-08 23:34:03 +00:00
|
|
|
rev = "v${version}";
|
2022-11-21 17:40:18 +00:00
|
|
|
sha256 = "sha256-8tCxmcg2FW8OyYQmsoEkhtLJn0V/1u5uw+Er7kWlqcM=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-10-30 15:09:59 +00:00
|
|
|
vendorSha256 = "sha256-L3l6wH4bR1/R6MtQTHYsyRE5E/EPnpNwa310zUONo+s=";
|
2020-06-18 07:06:33 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
|
|
|
postInstall = ''
|
2022-06-26 10:26:21 +00:00
|
|
|
installShellCompletion --cmd yq \
|
|
|
|
--bash <($out/bin/yq shell-completion bash) \
|
|
|
|
--fish <($out/bin/yq shell-completion fish) \
|
|
|
|
--zsh <($out/bin/yq shell-completion zsh)
|
2020-06-18 07:06:33 +00:00
|
|
|
'';
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-04-12 18:23:04 +00:00
|
|
|
passthru.tests = {
|
|
|
|
simple = runCommand "${pname}-test" {} ''
|
|
|
|
echo "test: 1" | ${yq-go}/bin/yq eval -j > $out
|
|
|
|
[ "$(cat $out | tr -d $'\n ')" = '{"test":1}' ]
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Portable command-line YAML processor";
|
|
|
|
homepage = "https://mikefarah.gitbook.io/yq/";
|
2021-10-08 15:17:17 +00:00
|
|
|
mainProgram = "yq";
|
2022-06-26 10:26:21 +00:00
|
|
|
license = [ licenses.mit ];
|
|
|
|
maintainers = with maintainers; [ lewo SuperSandro2000 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2020-06-18 07:06:33 +00:00
|
|
|
}
|