mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
57 lines
1.6 KiB
Nix
57 lines
1.6 KiB
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "dasel";
|
|
version = "2.3.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "TomWright";
|
|
repo = "dasel";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-/1CTtRTLgMlmFeubq3ebGnA9Do1mW6TtAXsCwi1JFmk=";
|
|
};
|
|
|
|
vendorHash = "sha256-cLf0MzEAykmtnPjT2vGOSPwIXJP6BhxheUaicT7o/X4=";
|
|
|
|
ldflags = [
|
|
"-s" "-w" "-X github.com/tomwright/dasel/v2/internal.Version=${version}"
|
|
];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = ''
|
|
installShellCompletion --cmd dasel \
|
|
--bash <($out/bin/dasel completion bash) \
|
|
--fish <($out/bin/dasel completion fish) \
|
|
--zsh <($out/bin/dasel completion zsh)
|
|
'';
|
|
|
|
doInstallCheck = true;
|
|
installCheckPhase = ''
|
|
runHook preInstallCheck
|
|
if [[ $($out/bin/dasel --version) == "dasel version ${version}" ]]; then
|
|
echo '{ "my": { "favourites": { "colour": "blue" } } }' \
|
|
| $out/bin/dasel put -t json -r json -t string -v "red" "my.favourites.colour" \
|
|
| grep "red"
|
|
else
|
|
return 1
|
|
fi
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Query and update data structures from the command line";
|
|
longDescription = ''
|
|
Dasel (short for data-selector) allows you to query and modify data structures using selector strings.
|
|
Comparable to jq / yq, but supports JSON, YAML, TOML and XML with zero runtime dependencies.
|
|
'';
|
|
homepage = "https://github.com/TomWright/dasel";
|
|
changelog = "https://github.com/TomWright/dasel/blob/v${version}/CHANGELOG.md";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ _0x4A6F ];
|
|
};
|
|
}
|