vifm: 0.13 -> 0.14 (#380559)
[NixPkgs.git] / pkgs / by-name / cr / critcmp / package.nix
blob5c85eaa6b4eed7eef0b70c1fede4c64387d72414
2   lib,
3   rustPlatform,
4   fetchFromGitHub,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "critcmp";
9   version = "0.1.8";
11   src = fetchFromGitHub {
12     owner = "BurntSushi";
13     repo = "critcmp";
14     rev = version;
15     hash = "sha256-cf78R9siH0RFbx+vXTs71VblpsQokL6Uo32N3X4lV2I=";
16   };
18   useFetchCargoVendor = true;
19   cargoHash = "sha256-wpfv6mebFPvL+9UkggRRH3fPOeGslORzxtN0q/KKOsw=";
21   meta = with lib; {
22     description = "Command line tool for comparing benchmarks run by Criterion";
23     mainProgram = "critcmp";
24     homepage = "https://github.com/BurntSushi/critcmp";
25     license = with licenses; [
26       mit
27       unlicense
28     ];
29     maintainers = with maintainers; [ figsoda ];
30   };