Commit dcce6ead authored by Arijit Basu's avatar Arijit Basu Committed by Anderson Torres
Browse files

jf: init at 0.2.2

parent b5f747c7
Loading
Loading
Loading
Loading
+22 −0
Original line number Diff line number Diff line
{ lib, stdenv, rustPlatform, fetchFromGitHub }:

rustPlatform.buildRustPackage rec {
  pname = "jf";
  version = "0.2.2";

  src = fetchFromGitHub {
    owner = "sayanarijit";
    repo = "jf";
    rev = "v${version}";
    hash = "sha256-6x/WDsDHkQVjiere17XMY3lxG2M5bmTtdH1rMjii+NY=";
  };

  cargoHash = "sha256-W8/6EiqevF7mX2cgdv9/USVnSVxQ/J6I3Cq/UJyZOxU=";

  meta = with lib; {
    description = "A small utility to safely format and print JSON objects in the commandline";
    homepage = "https://github.com/sayanarijit/jf";
    license = licenses.mit;
    maintainers = [ maintainers.sayanarijit ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -8833,6 +8833,8 @@ with pkgs;
  jet = callPackage ../development/tools/jet { };
  jf = callPackage ../development/tools/jf { };
  jfmt = callPackage ../development/tools/jfmt { };
  jfsutils = callPackage ../tools/filesystems/jfsutils { };