biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / jless / default.nix
bloba07db6781ef348cf45f75f02d8a3283c3151fce0
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.isLinux [ python3 ];
18   buildInputs = [ ]
19     ++ lib.optionals stdenv.isDarwin [ AppKit ]
20     ++ lib.optionals stdenv.isLinux [ libxcb ];
22   meta = with lib; {
23     description = "A 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   };