{ lib, stdenv, rustPlatform, fetchFromGitHub, libiconv }: rustPlatform.buildRustPackage rec { pname = "krapslog"; version = "0.3.1"; src = fetchFromGitHub { owner = "acj"; repo = "krapslog-rs"; rev = version; sha256 = "sha256-8m3AATRymIvh0ToldlGdWdmjSyG1CDfS+CfL+l5oj8o="; }; cargoSha256 = "sha256-2vF+eVuVc5tqVnPV2SgxGLv/DjeYoh3jBiCo0rQQpHE="; buildInputs = lib.optional stdenv.isDarwin libiconv; 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 ]; }; }