handheld-daemon-ui: 3.2.3 -> 3.3.0 (#361609)
[NixPkgs.git] / pkgs / development / tools / jless / default.nix
blob0aba5e3f23f11ead849f547c3457cf041810cd7c
1 { lib, fetchFromGitHub, rustPlatform, stdenv, python3, AppKit, libxcb }:
3 rustPlatform.buildRustPackage rec {
4   pname = "jless";
5   version = "0.9.0";
7   src = fetchFromGitHub {
8     owner = "PaulJuliusMartinez";
9     repo = "jless";
10     rev = "v${version}";
11     hash = "sha256-76oFPUWROX389U8DeMjle/GkdItu+0eYxZkt1c6l0V4=";
12   };
14   cargoHash = "sha256-sas94liAOSIirIJGdexdApXic2gWIBDT4uJFRM3qMw0=";
16   nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ python3 ];
18   buildInputs = [ ]
19     ++ lib.optionals stdenv.hostPlatform.isDarwin [ AppKit ]
20     ++ lib.optionals stdenv.hostPlatform.isLinux [ libxcb ];
22   meta = with lib; {
23     description = "Command-line pager for JSON data";
24     mainProgram = "jless";
25     homepage = "https://jless.io";
26     changelog = "https://github.com/PaulJuliusMartinez/jless/blob/${src.rev}/CHANGELOG.md";
27     license = licenses.mit;
28     maintainers = with maintainers; [ figsoda jfchevrette ];
29   };