jfmt: init at 1.2.0

main
Sibi Prabakaran 2 years ago committed by zowoq
parent 7434084278
commit 66a89c0cfd
  1. 22
      pkgs/development/tools/jfmt/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,22 @@
{ lib, rustPlatform, fetchFromGitHub }:
rustPlatform.buildRustPackage rec {
pname = "jfmt";
version = "1.2.0";
src = fetchFromGitHub {
owner = "scruffystuffs";
repo = "${pname}.rs";
rev = version;
sha256 = "07qb0sjwww6d2n7fw8w4razq1mkn4psrs9wqi1ccndrya1y39d8b";
};
cargoSha256 = "19kg2n53y9nazwpp8gcvdprxry2llf2k7g4q4zalyxkhpf7k6irb";
meta = with lib; {
description = "CLI utility to format json files";
homepage = "https://github.com/scruffystuffs/jfmt.rs";
license = licenses.mit;
maintainers = [ maintainers.psibi ];
};
}

@ -6767,6 +6767,8 @@ with pkgs;
jet = callPackage ../development/tools/jet { };
jfmt = callPackage ../development/tools/jfmt { };
jfsutils = callPackage ../tools/filesystems/jfsutils { };
jhead = callPackage ../tools/graphics/jhead { };

Loading…
Cancel
Save