python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / bottom-rs / default.nix
blobf9a24537676ff03357e3363c0ebd5db579fbb797
1 { lib, rustPlatform, fetchCrate }:
3 rustPlatform.buildRustPackage rec {
4   pname = "bottom-rs";
5   version = "1.2.0";
7   src = fetchCrate {
8     inherit version;
9     crateName = "bottomify";
10     sha256 = "sha256-R1zj+TFXoolonIFa1zJDd7CdrORfzAPlxJoJVYe9xdc=";
11   };
13   cargoSha256 = "sha256-7xD65ookkK09XwCBH6fXqmWRYlmvpwAocojBg/dHzUI=";
15   meta = with lib; {
16     description = "Fantastic (maybe) CLI for translating between bottom and human-readable text";
17     homepage = "https://github.com/bottom-software-foundation/bottom-rs";
18     license = licenses.mit;
19     maintainers = with maintainers; [ winter ];
20     mainProgram = "bottomify";
21   };