jql: init at 2.9.4

+24
+22
pkgs/development/tools/jql/default.nix
··· 1 + { lib, fetchFromGitHub, rustPlatform }: 2 + 3 + rustPlatform.buildRustPackage rec { 4 + pname = "jql"; 5 + version = "2.9.4"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "yamafaktory"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "1rwnmp2rnzwc7anmk7nr8l4ncza8s1f8sn0r2la4ai2sx1iqn06h"; 12 + }; 13 + 14 + cargoSha256 = "1c83mmdxci7l3c6ja5fhk4cak1gcbg0r0nlpbpims5gi16nf99r3"; 15 + 16 + meta = with lib; { 17 + description = "A JSON Query Language CLI tool built with Rust"; 18 + homepage = "https://github.com/yamafaktory/jql"; 19 + license = with licenses; [ mit ]; 20 + maintainers = with maintainers; [ akshgpt7 ]; 21 + }; 22 + }
+2
pkgs/top-level/all-packages.nix
··· 5743 5743 5744 5744 jq = callPackage ../development/tools/jq { }; 5745 5745 5746 + jql = callPackage ../development/tools/jql { }; 5747 + 5746 5748 jo = callPackage ../development/tools/jo { }; 5747 5749 5748 5750 jrnl = python3Packages.callPackage ../applications/misc/jrnl { };