about summary refs log tree commit diff
path: root/pkgs/development/tools/jqp
diff options
context:
space:
mode:
authorMostly Void <7rat13@gmail.com>2022-09-30 21:23:42 +0530
committerzowoq <59103226+zowoq@users.noreply.github.com>2022-10-01 07:36:44 +1000
commit5d3e29ea7e426bf491639b5919e111384435ff9f (patch)
tree82b4688c462d6ea47832a76b4220d92f4a6afef9 /pkgs/development/tools/jqp
parentd2c3678e7a1838f619336e6331174fb77184da9b (diff)
downloadnixlib-5d3e29ea7e426bf491639b5919e111384435ff9f.tar
nixlib-5d3e29ea7e426bf491639b5919e111384435ff9f.tar.gz
nixlib-5d3e29ea7e426bf491639b5919e111384435ff9f.tar.bz2
nixlib-5d3e29ea7e426bf491639b5919e111384435ff9f.tar.lz
nixlib-5d3e29ea7e426bf491639b5919e111384435ff9f.tar.xz
nixlib-5d3e29ea7e426bf491639b5919e111384435ff9f.tar.zst
nixlib-5d3e29ea7e426bf491639b5919e111384435ff9f.zip
jqp: init at 0.2.0
Diffstat (limited to 'pkgs/development/tools/jqp')
-rw-r--r--pkgs/development/tools/jqp/default.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/tools/jqp/default.nix b/pkgs/development/tools/jqp/default.nix
new file mode 100644
index 000000000000..7563972d0e17
--- /dev/null
+++ b/pkgs/development/tools/jqp/default.nix
@@ -0,0 +1,27 @@
+{ lib
+, buildGoModule
+, fetchFromGitHub
+}:
+
+buildGoModule rec {
+  pname = "jqp";
+  version = "0.2.0";
+
+  src = fetchFromGitHub {
+    owner = "noahgorstein";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "sha256-dVarasXLJrB/akMUvjZn313+bqM39Ji4l91PAxwmfG0=";
+  };
+
+  vendorSha256 = "sha256-KlnKWeLbmLH6M5+oD/BYuqkTyrV9Xo7ibrNjukFe7ss=";
+
+  subPackages = [ "." ];
+
+  meta = with lib; {
+    description = "A TUI playground to experiment with jq";
+    homepage = "https://github.com/noahgorstein/jqp";
+    license = licenses.mit;
+    maintainers = with maintainers; [ dit7ya ];
+  };
+}