mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
jf: init at 0.2.2
This commit is contained in:
parent
b5f747c7b1
commit
dcce6eadeb
22
pkgs/development/tools/jf/default.nix
Normal file
22
pkgs/development/tools/jf/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user