bandwhich: 0.23.0 -> 0.23.1; move to by-name; nixfmt; useFetchCargoVendor (#356934)
[NixPkgs.git] / pkgs / by-name / rt / rtss / package.nix
blob3e30aa0dd5926263eb6d7bf815e9c473f71872e9
2   lib,
3   fetchFromGitHub,
4   rustPlatform,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "rtss";
9   version = "0.6.2";
11   src = fetchFromGitHub {
12     owner = "Freaky";
13     repo = pname;
14     rev = "v${version}";
15     sha256 = "sha256-WeeZsB42/4SlIaWwKvOqWiPNV5p0QOToynI8ozVVxJM=";
16   };
18   cargoHash = "sha256-aHK9KBzRbU2IYr7vOdlz0Aw4iYGjD6VedbWPE/V7AVc=";
20   meta = with lib; {
21     description = "Annotate output with relative durations between lines";
22     mainProgram = "rtss";
23     homepage = "https://github.com/Freaky/rtss";
24     license = licenses.mit;
25     maintainers = with maintainers; [ djanatyn ];
26   };