python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / watchlog / default.nix
blobb89d42354e1bb1c4264f395106f2d3ac590381c0
2   lib,
3   rustPlatform,
4   fetchFromGitLab,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "watchlog";
9   version = "1.152.0";
11   src = fetchFromGitLab {
12     owner = "kevincox";
13     repo = "watchlog";
14     rev = "v${version}";
15     sha256 = "sha256-m0sqLi5qxQKfdFtHxo0DX4bV6lUNZP1JWt8NAfY+F5A=";
16   };
18   cargoSha256 = "sha256-uIaGIHBB/ntGyBZL45E61E9fELR8UGRieb/fJQsB5NE=";
20   meta = {
21     description = "Easier monitoring of live logs";
22     homepage = "https://gitlab.com/kevincox/watchlog";
23     license = lib.licenses.asl20;
24     maintainers = with lib.maintainers; [ kevincox ];
26     # Dependency only supports Linux + Windows: https://github.com/mentaljam/standard_paths/tree/master/src
27     platforms = with lib.platforms; linux ++ windows;
28   };