mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-05 09:58:50 +03:00
jfmt: init at 1.2.0
This commit is contained in:
parent
7434084278
commit
66a89c0cfd
22
pkgs/development/tools/jfmt/default.nix
Normal file
22
pkgs/development/tools/jfmt/default.nix
Normal file
@ -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…
Reference in New Issue
Block a user