jf: init at 0.2.2

This commit is contained in:
Arijit Basu 2023-05-14 14:05:37 +05:30 committed by Anderson Torres
parent b5f747c7b1
commit dcce6eadeb
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ 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 ];
};
}

View file

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