nixpkgs/pkgs/applications/misc/dasel/default.nix

46 lines
1.3 KiB
Nix
Raw Normal View History

2020-11-04 20:21:54 +00:00
{ stdenv
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "dasel";
2020-12-22 15:23:20 +00:00
version = "1.11.0";
2020-11-04 20:21:54 +00:00
src = fetchFromGitHub {
owner = "TomWright";
repo = pname;
rev = "v${version}";
2020-12-22 15:23:20 +00:00
sha256 = "1xyh41vb2rypajjzbysw6k8x39bna8j3fmxcqyjcrqs0dzx78nk3";
2020-11-04 20:21:54 +00:00
};
2020-12-15 08:21:15 +00:00
vendorSha256 = "1il1vnv0v97qh8f47md5i6qaac2k8par0pd0z7zqg67vxq6gim85";
2020-11-04 20:21:54 +00:00
2020-12-04 06:22:07 +00:00
buildFlagsArray = ''
-ldflags=-s -w -X github.com/tomwright/dasel/internal.Version=${version}
'';
2020-12-20 19:41:51 +00: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
'';
2020-11-04 20:21:54 +00:00
meta = with stdenv.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";
license = licenses.mit;
platforms = platforms.unix;
maintainers = with maintainers; [ _0x4A6F ];
};
}