evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / rt / rtss / package.nix
blob5545d90281cdfbb7666a57735169d291c6590559
1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage rec {
4   pname = "rtss";
5   version = "0.6.2";
7   src = fetchFromGitHub {
8     owner = "Freaky";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "sha256-WeeZsB42/4SlIaWwKvOqWiPNV5p0QOToynI8ozVVxJM=";
12   };
14   cargoHash = "sha256-aHK9KBzRbU2IYr7vOdlz0Aw4iYGjD6VedbWPE/V7AVc=";
16   meta = with lib; {
17     description = "Annotate output with relative durations between lines";
18     mainProgram = "rtss";
19     homepage = "https://github.com/Freaky/rtss";
20     license = licenses.mit;
21     maintainers = with maintainers; [ djanatyn ];
22   };