summary refs log blame commit diff
path: root/pkgs/development/tools/jless/default.nix
blob: f18f3f556c5874ed6545b5777f873663fa9cb5ca (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                                       
                    




                                 
                                                                   

    
                                                                      




                                                             
                                                          

    
{ 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 ];
  };
}