Skip to content

Commit

Permalink
Merge pull request #102822 from 0x4A6F/master-dasel
Browse files Browse the repository at this point in the history
dasel: init at 1.1.0
  • Loading branch information
Mic92 committed Nov 5, 2020
2 parents 43f23f5 + d5edfc5 commit f7dd7e8
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
30 changes: 30 additions & 0 deletions pkgs/applications/misc/dasel/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{ stdenv
, buildGoModule
, fetchFromGitHub
}:

buildGoModule rec {
pname = "dasel";
version = "1.1.0";

src = fetchFromGitHub {
owner = "TomWright";
repo = pname;
rev = "v${version}";
sha256 = "sha256:11xm47p7n79mq2zkv9q9m5v4a1gga01pkzi2j42gq1ma9hwz4idz";
};

vendorSha256 = "sha256:1552k85z4s6gv7sss7dccv3h8x22j2sr12icp6s7s0a3i4iwyksw";

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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1854,6 +1854,8 @@ in

dapr-cli = callPackage ../development/tools/dapr/cli {};

dasel = callPackage ../applications/misc/dasel { };

dasher = callPackage ../applications/accessibility/dasher { };

datamash = callPackage ../tools/misc/datamash { };
Expand Down

0 comments on commit f7dd7e8

Please sign in to comment.