at 23.05-pre 22 lines 595 B view raw
1{ lib, fetchFromGitHub, rustPlatform }: 2 3rustPlatform.buildRustPackage rec { 4 pname = "jql"; 5 version = "5.1.2"; 6 7 src = fetchFromGitHub { 8 owner = "yamafaktory"; 9 repo = pname; 10 rev = "v${version}"; 11 sha256 = "sha256-Vv22BDFecGEketJb0qQ4+FxSB2BLb9LcnEAqm/BKRxM="; 12 }; 13 14 cargoSha256 = "sha256-DRrewxKOR0LjpgoN7TWXHWxJxcZ/psjI/lSnyzBXRXM="; 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}