2021-03-20 02:17:30 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub, installShellFiles, runCommand, yq-go }:
|
2019-08-23 10:26:08 +00:00
|
|
|
|
2020-02-22 00:39:23 +00:00
|
|
|
buildGoModule rec {
|
2019-08-23 10:26:08 +00:00
|
|
|
pname = "yq-go";
|
2022-05-28 20:42:27 +00:00
|
|
|
version = "4.25.2";
|
2019-08-23 10:26:08 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mikefarah";
|
|
|
|
repo = "yq";
|
2021-08-06 19:50:24 +00:00
|
|
|
rev = "v${version}";
|
2022-05-28 20:42:27 +00:00
|
|
|
sha256 = "sha256-yvFh1wPOsmQLGTLrMG7dwcEukFpelP183Xa2n2XiHlQ=";
|
2019-08-23 10:26:08 +00:00
|
|
|
};
|
|
|
|
|
2022-05-28 20:42:27 +00:00
|
|
|
vendorSha256 = "sha256-oUpHK6YKjKWTGL2yC1q2hK/K/gK8I+FwTVshTxHBOKI=";
|
2020-06-11 23:24:58 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
|
|
|
|
postInstall = ''
|
2022-06-21 09:39:53 +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-11 23:24:58 +00:00
|
|
|
'';
|
2019-08-23 10:26:08 +00:00
|
|
|
|
2021-03-20 02:17:30 +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-03-01 23:20:12 +00:00
|
|
|
meta = with lib; {
|
2019-08-23 10:26:08 +00:00
|
|
|
description = "Portable command-line YAML processor";
|
2020-02-22 00:39:23 +00:00
|
|
|
homepage = "https://mikefarah.gitbook.io/yq/";
|
2021-10-08 08:10:20 +00:00
|
|
|
mainProgram = "yq";
|
2022-06-21 09:39:53 +00:00
|
|
|
license = [ licenses.mit ];
|
|
|
|
maintainers = with maintainers; [ lewo SuperSandro2000 ];
|
2019-08-23 10:26:08 +00:00
|
|
|
};
|
2020-06-11 23:24:58 +00:00
|
|
|
}
|