2022-11-21 17:40:18 +00:00
|
|
|
{ lib
|
2023-08-22 20:05:09 +00:00
|
|
|
, rustPlatform
|
2022-11-21 17:40:18 +00:00
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
|
|
|
|
2023-08-22 20:05:09 +00:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2022-11-21 17:40:18 +00:00
|
|
|
pname = "tailspin";
|
2023-11-16 04:20:00 +00:00
|
|
|
version = "2.1.0";
|
2022-11-21 17:40:18 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "bensadeh";
|
2023-08-22 20:05:09 +00:00
|
|
|
repo = "tailspin";
|
2023-11-16 04:20:00 +00:00
|
|
|
rev = version;
|
|
|
|
hash = "sha256-WsQpMmFTlAPg+9uEecMKfpys29cQ642IZ8yvsPxmCfo=";
|
2022-11-21 17:40:18 +00:00
|
|
|
};
|
|
|
|
|
2023-11-16 04:20:00 +00:00
|
|
|
cargoHash = "sha256-sttQ8fGRGdq7nDiG3/z/YEg2NA+miTwahGNv3yNnnds=";
|
2022-11-21 17:40:18 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2023-08-22 20:05:09 +00:00
|
|
|
description = "A log file highlighter";
|
2022-11-21 17:40:18 +00:00
|
|
|
homepage = "https://github.com/bensadeh/tailspin";
|
2023-08-22 20:05:09 +00:00
|
|
|
changelog = "https://github.com/bensadeh/tailspin/blob/${version}/CHANGELOG.md";
|
2022-11-21 17:40:18 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ dit7ya ];
|
2023-11-16 04:20:00 +00:00
|
|
|
mainProgram = "tspin";
|
2022-11-21 17:40:18 +00:00
|
|
|
};
|
|
|
|
}
|