grex: 1.4.2 -> 1.4.4

Changelog: https://github.com/pemistahl/grex/releases/tag/v1.4.4
Diff: https://github.com/pemistahl/grex/compare/v1.4.2...v1.4.4
Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>

+6 -4
+6 -4
pkgs/tools/misc/grex/default.nix
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "grex"; 9 - version = "1.4.2"; 10 11 src = fetchFromGitHub { 12 owner = "pemistahl"; 13 - repo = pname; 14 rev = "v${version}"; 15 - sha256 = "sha256-kbrBnpoVeXSgmIqElpfAnoSutYwsnFaxFJpRsJPUE8k="; 16 }; 17 18 - cargoSha256 = "sha256-WO8h5JUEiCpfsROQoRZj7I6em6REcJ2PfmoGN1zKRPg="; 19 20 buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 21 ··· 27 meta = with lib; { 28 description = "A command-line tool for generating regular expressions from user-provided test cases"; 29 homepage = "https://github.com/pemistahl/grex"; 30 license = licenses.asl20; 31 maintainers = with maintainers; [ SuperSandro2000 mfrw ]; 32 }; 33 }
··· 6 7 rustPlatform.buildRustPackage rec { 8 pname = "grex"; 9 + version = "1.4.4"; 10 11 src = fetchFromGitHub { 12 owner = "pemistahl"; 13 + repo = "grex"; 14 rev = "v${version}"; 15 + hash = "sha256-ef1eUxeCznIgXLoywwJmnLkTGdW1AmGwCin9DLU9kAs="; 16 }; 17 18 + cargoHash = "sha256-XLH+fS3fwRcWmVOzTjUacV010N37Oofs9Tbixdka1qY="; 19 20 buildInputs = lib.optionals stdenv.isDarwin [ Security ]; 21 ··· 27 meta = with lib; { 28 description = "A command-line tool for generating regular expressions from user-provided test cases"; 29 homepage = "https://github.com/pemistahl/grex"; 30 + changelog = "https://github.com/pemistahl/grex/releases/tag/v${version}"; 31 license = licenses.asl20; 32 + mainProgram = "grex"; 33 maintainers = with maintainers; [ SuperSandro2000 mfrw ]; 34 }; 35 }