Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.11 23 lines 616 B view raw
1{ lib 2, rustPlatform 3, fetchCrate 4}: 5 6rustPlatform.buildRustPackage rec { 7 pname = "regex-cli"; 8 version = "0.1.1"; 9 10 src = fetchCrate { 11 inherit pname version; 12 hash = "sha256-i+3HluKbR+5e2Nd0E0Xy+mwsC9x3+21rFdCNmII8HsM="; 13 }; 14 15 cargoHash = "sha256-u6Gaeo9XDcyxZwBt67IF1X7rr4vR9jIrzr8keHGU88w="; 16 17 meta = with lib; { 18 description = "A command line tool for debugging, ad hoc benchmarking and generating regular expressions"; 19 homepage = "https://github.com/rust-lang/regex/tree/master/regex-cli"; 20 license = with licenses; [ asl20 mit ]; 21 maintainers = with maintainers; [ figsoda ]; 22 }; 23}