nixpkgs/pkgs/development/tools/jqp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
589 B
Nix
Raw Normal View History

2022-09-30 15:53:42 +00:00
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "jqp";
2023-01-09 20:23:32 +00:00
version = "0.4.0";
2022-09-30 15:53:42 +00:00
src = fetchFromGitHub {
owner = "noahgorstein";
repo = pname;
rev = "v${version}";
2023-01-09 20:23:32 +00:00
sha256 = "sha256-qN248U4Fx4IAjJegCUj98PzrypMp9PQEr2RUaKX3yE4=";
2022-09-30 15:53:42 +00:00
};
2023-01-09 20:23:32 +00:00
vendorHash = "sha256-qZTqqSANg0FpupWXTrHuYmnaTE387FhC40ZrZ9tlfew=";
2022-09-30 15:53:42 +00:00
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 ];
};
}