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

35 lines
971 B
Nix
Raw Normal View History

2020-11-04 20:21:54 +00:00
{ stdenv
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "dasel";
2020-12-14 20:55:35 +00:00
version = "1.9.0";
2020-11-04 20:21:54 +00:00
src = fetchFromGitHub {
owner = "TomWright";
repo = pname;
rev = "v${version}";
2020-12-14 20:55:35 +00:00
sha256 = "sha256-5Ua24PvXPCCwo8XScNZ3JtXC9rzpfFnOZ3I9pTMCBO8=";
2020-11-04 20:21:54 +00:00
};
2020-11-15 02:34:21 +00:00
vendorSha256 = "1552k85z4s6gv7sss7dccv3h8x22j2sr12icp6s7s0a3i4iwyksw";
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-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 ];
};
}