at 24.05-pre 621 B view raw
1{ lib 2, rustPlatform 3, fetchFromGitHub 4}: 5 6rustPlatform.buildRustPackage rec { 7 pname = "critcmp"; 8 version = "0.1.8"; 9 10 src = fetchFromGitHub { 11 owner = "BurntSushi"; 12 repo = "critcmp"; 13 rev = version; 14 hash = "sha256-cf78R9siH0RFbx+vXTs71VblpsQokL6Uo32N3X4lV2I="; 15 }; 16 17 cargoHash = "sha256-yzWa+/08tG8h+5V8XBc3k8GDivS6SHW6zVb+ug1sbE0="; 18 19 meta = with lib; { 20 description = "A command line tool for comparing benchmarks run by Criterion"; 21 homepage = "https://github.com/BurntSushi/critcmp"; 22 license = with licenses; [ mit unlicense ]; 23 maintainers = with maintainers; [ figsoda ]; 24 }; 25}