2021-01-25 09:26:54 +01:00
|
|
|
{ lib
|
2020-11-04 21:21:54 +01:00
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "dasel";
|
2021-05-07 04:02:04 +02:00
|
|
|
version = "1.15.0";
|
2020-11-04 21:21:54 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "TomWright";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-05-07 04:02:04 +02:00
|
|
|
sha256 = "sha256-XJSWdXGa1qkkMfETUV8xx9oaMdNVFdO27/GvDvczjG8=";
|
2020-11-04 21:21:54 +01:00
|
|
|
};
|
|
|
|
|
2021-02-11 15:44:49 +01:00
|
|
|
vendorSha256 = "sha256-BdX4DO77mIf/+aBdkNVFUzClsIml1UMcgvikDbbdgcY=";
|
2020-11-04 21:21:54 +01:00
|
|
|
|
2020-12-04 07:22:07 +01:00
|
|
|
buildFlagsArray = ''
|
|
|
|
-ldflags=-s -w -X github.com/tomwright/dasel/internal.Version=${version}
|
|
|
|
'';
|
|
|
|
|
2020-12-20 20:41:51 +01:00
|
|
|
doInstallCheck = true;
|
|
|
|
installCheckPhase = ''
|
|
|
|
if [[ "$("$out/bin/${pname}" --version)" == "${pname} version ${version}" ]]; then
|
|
|
|
echo "" | $out/bin/dasel put object -p yaml -t string -t int "my.favourites" colour=red number=3 | grep -q red
|
|
|
|
echo '${pname} smoke check passed'
|
|
|
|
else
|
|
|
|
echo '${pname} smoke check failed'
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2020-11-04 21:21:54 +01:00
|
|
|
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";
|
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ _0x4A6F ];
|
|
|
|
};
|
|
|
|
}
|