jf: init at 0.2.2

authored by

Arijit Basu and committed by
Anderson Torres
dcce6ead b5f747c7

+24
+22
pkgs/development/tools/jf/default.nix
··· 1 + { lib, stdenv, rustPlatform, fetchFromGitHub }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "jf"; 5 + version = "0.2.2"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "sayanarijit"; 9 + repo = "jf"; 10 + rev = "v${version}"; 11 + hash = "sha256-6x/WDsDHkQVjiere17XMY3lxG2M5bmTtdH1rMjii+NY="; 12 + }; 13 + 14 + cargoHash = "sha256-W8/6EiqevF7mX2cgdv9/USVnSVxQ/J6I3Cq/UJyZOxU="; 15 + 16 + meta = with lib; { 17 + description = "A small utility to safely format and print JSON objects in the commandline"; 18 + homepage = "https://github.com/sayanarijit/jf"; 19 + license = licenses.mit; 20 + maintainers = [ maintainers.sayanarijit ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 8833 8833 8834 8834 jet = callPackage ../development/tools/jet { }; 8835 8835 8836 + jf = callPackage ../development/tools/jf { }; 8837 + 8836 8838 jfmt = callPackage ../development/tools/jfmt { }; 8837 8839 8838 8840 jfsutils = callPackage ../tools/filesystems/jfsutils { };