python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / tools / fblog / default.nix
blob63592bb1359bd813a1dac7c815de18f4de50fd94
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "fblog";
5   version = "4.1.0";
7   src = fetchFromGitHub {
8     owner = "brocode";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "1lj0cv1rmcqg36rxnnjh1dazn0sdggfc9kigjg3id6h0y8k7d9b3";
12   };
14   cargoSha256 = "sha256-xHvnxRPxe09EmxUK9j7+V2AA1xJFP3ibwbkSs3FBgcw=";
16   meta = with lib; {
17     description = "A small command-line JSON log viewer";
18     homepage = "https://github.com/brocode/fblog";
19     license = licenses.wtfpl;
20     maintainers = with maintainers; [ figsoda ];
21   };