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

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

23 lines
602 B
Nix
Raw Normal View History

2022-02-09 23:03:04 +00:00
{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "jless";
version = "0.7.2";
2022-02-09 23:03:04 +00:00
src = fetchFromGitHub {
owner = "PaulJuliusMartinez";
repo = "jless";
rev = "v${version}";
sha256 = "sha256-IK+EllkctdhIYuzj7eLjadxKoutICPeSXAjLMFiRjmo=";
2022-02-09 23:03:04 +00:00
};
cargoSha256 = "sha256-CAyKWwtMq5UOODVRrpVHrhlep2wqG434dMGeYV2FSZY=";
2022-02-09 23:03:04 +00:00
meta = with lib; {
description = "A command-line pager for JSON data";
homepage = "https://github.com/PaulJuliusMartinez/jless";
license = licenses.mit;
2022-02-20 00:12:06 +00:00
maintainers = with maintainers; [ jfchevrette zowoq ];
2022-02-09 23:03:04 +00:00
};
}