biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rust / critcmp / default.nix
blob3035e6b97937adef2c99c49b79e3ece8f0e9af60
1 { lib
2 , rustPlatform
3 , fetchFromGitHub
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "critcmp";
8   version = "0.1.8";
10   src = fetchFromGitHub {
11     owner = "BurntSushi";
12     repo = "critcmp";
13     rev = version;
14     hash = "sha256-cf78R9siH0RFbx+vXTs71VblpsQokL6Uo32N3X4lV2I=";
15   };
17   cargoHash = "sha256-yzWa+/08tG8h+5V8XBc3k8GDivS6SHW6zVb+ug1sbE0=";
19   meta = with lib; {
20     description = "A command line tool for comparing benchmarks run by Criterion";
21     mainProgram = "critcmp";
22     homepage = "https://github.com/BurntSushi/critcmp";
23     license = with licenses; [ mit unlicense ];
24     maintainers = with maintainers; [ figsoda ];
25   };