depot/third_party/nixpkgs/pkgs/development/tools/misc/rtss/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

23 lines
608 B
Nix

{ lib, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "rtss";
version = "0.6.2";
src = fetchFromGitHub {
owner = "Freaky";
repo = pname;
rev = "v${version}";
sha256 = "sha256-WeeZsB42/4SlIaWwKvOqWiPNV5p0QOToynI8ozVVxJM=";
};
cargoHash = "sha256-aHK9KBzRbU2IYr7vOdlz0Aw4iYGjD6VedbWPE/V7AVc=";
meta = with lib; {
description = "Annotate output with relative durations between lines";
mainProgram = "rtss";
homepage = "https://github.com/Freaky/rtss";
license = licenses.mit;
maintainers = with maintainers; [ djanatyn ];
};
}