2021-05-20 23:08:51 +00:00
|
|
|
{ lib, stdenv, rustPlatform, fetchFromGitHub, libiconv }:
|
2021-02-22 21:28:39 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "krapslog";
|
2024-06-05 15:53:02 +00:00
|
|
|
version = "0.6.0";
|
2021-02-22 21:28:39 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "acj";
|
|
|
|
repo = "krapslog-rs";
|
|
|
|
rev = version;
|
2024-06-05 15:53:02 +00:00
|
|
|
sha256 = "sha256-wRziLNMwLZBCn330FNC9x6loCCyuC+31Kh51ZI/j1Cc=";
|
2021-02-22 21:28:39 +00:00
|
|
|
};
|
|
|
|
|
2024-06-05 15:53:02 +00:00
|
|
|
cargoHash = "sha256-5jhEcwOdzLqzxQsEBqo4d5ecsg/vhiKuVjGYIwFzihE=";
|
2021-02-22 21:28:39 +00:00
|
|
|
|
2024-09-26 11:04:55 +00:00
|
|
|
buildInputs = lib.optional stdenv.hostPlatform.isDarwin libiconv;
|
2021-05-20 23:08:51 +00:00
|
|
|
|
2021-02-22 21:28:39 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Visualize a log file with sparklines";
|
|
|
|
homepage = "https://github.com/acj/krapslog-rs";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ yanganto ];
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "krapslog";
|
2021-02-22 21:28:39 +00:00
|
|
|
};
|
|
|
|
}
|