python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / 0x / default.nix
bloba8264df3c34cf59c91c4f5b3eda856c5eaa4cda8
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 }:
6 rustPlatform.buildRustPackage {
7   pname = "0x";
8   version = "unstable-2022-07-11";
10   src = fetchFromGitHub {
11     owner = "mcy";
12     repo = "0x";
13     rev = "8070704b8efdd1f16bc7e01e393230f16cd8b0a6";
14     hash = "sha256-NzD/j8rBfk/cpoBnkFHFqpXz58mswLZr8TUS16vlrZQ=";
15   };
17   cargoPatches = [ ./add-Cargo-lock.diff ];
19   cargoHash = "sha256-3qaPGIbl1jF4784KGxbfBTgW/0ayxIO9Ufp9vkhIJa4=";
21   meta = with lib; {
22     homepage = "https://github.com/mcy/0x";
23     description = "A colorful, configurable xxd";
24     license = licenses.asl20;
25     maintainers = with maintainers; [ AndersonTorres ];
26   };