mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 00:24:18 +00:00
23 lines
602 B
Nix
23 lines
602 B
Nix
{ lib, fetchFromGitHub, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "jless";
|
|
version = "0.7.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "PaulJuliusMartinez";
|
|
repo = "jless";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-IK+EllkctdhIYuzj7eLjadxKoutICPeSXAjLMFiRjmo=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-CAyKWwtMq5UOODVRrpVHrhlep2wqG434dMGeYV2FSZY=";
|
|
|
|
meta = with lib; {
|
|
description = "A command-line pager for JSON data";
|
|
homepage = "https://github.com/PaulJuliusMartinez/jless";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jfchevrette zowoq ];
|
|
};
|
|
}
|