biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / krapslog / default.nix
blobf4f1410ec5126eb21b237a1a8f0ecfa3a00b5dfb
1 { lib, stdenv, rustPlatform, fetchFromGitHub, libiconv }:
3 rustPlatform.buildRustPackage rec {
4   pname = "krapslog";
5   version = "0.6.0";
7   src = fetchFromGitHub {
8     owner = "acj";
9     repo = "krapslog-rs";
10     rev = version;
11     sha256 = "sha256-wRziLNMwLZBCn330FNC9x6loCCyuC+31Kh51ZI/j1Cc=";
12   };
14   cargoHash = "sha256-5jhEcwOdzLqzxQsEBqo4d5ecsg/vhiKuVjGYIwFzihE=";
16   buildInputs = lib.optional stdenv.hostPlatform.isDarwin libiconv;
18   meta = with lib; {
19     description = "Visualize a log file with sparklines";
20     homepage = "https://github.com/acj/krapslog-rs";
21     license = with licenses; [ mit ];
22     maintainers = with maintainers; [ yanganto ];
23     mainProgram = "krapslog";
24   };