python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / krapslog / default.nix
blob4d6b3e016b4358183fd7fa0bf5cceff601896127
1 { lib, stdenv, rustPlatform, fetchFromGitHub, libiconv }:
3 rustPlatform.buildRustPackage rec {
4   pname = "krapslog";
5   version = "0.4.1";
7   src = fetchFromGitHub {
8     owner = "acj";
9     repo = "krapslog-rs";
10     rev = version;
11     sha256 = "sha256-MzO6fcBlrGeZoflyFXPVIdQ+y/GkQz3yEeEbXLoDZQY=";
12   };
14   cargoSha256 = "sha256-r5UGCEMAEVIdVeBPsgBf/CMYtBPS03Joje4sNQ8XfFA=";
16   buildInputs = lib.optional stdenv.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   };