jqp: init at 0.2.0
This commit is contained in:
parent
d2c3678e7a
commit
5d3e29ea7e
27
pkgs/development/tools/jqp/default.nix
Normal file
27
pkgs/development/tools/jqp/default.nix
Normal file
@ -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 ];
|
||||
};
|
||||
}
|
@ -8003,6 +8003,8 @@ with pkgs;
|
||||
|
||||
jql = callPackage ../development/tools/jql { };
|
||||
|
||||
jqp = callPackage ../development/tools/jqp { };
|
||||
|
||||
jo = callPackage ../development/tools/jo { };
|
||||
|
||||
jrnl = callPackage ../applications/misc/jrnl { };
|
||||
|
Loading…
Reference in New Issue
Block a user