python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / asciinema-scenario / default.nix
blob45d1ba4a79eca033887aae0aa80c2657f41ecf67
1 { lib
2 , rustPlatform
3 , fetchCrate
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "asciinema-scenario";
8   version = "0.3.0";
10   src = fetchCrate {
11     inherit pname version;
12     sha256 = "sha256-fnX5CIYLdFqi04PQPVIAYDGn+xXi016l8pPcIrYIhmQ=";
13   };
15   cargoSha256 = "sha256-8I3mPSJ5aXvQ88nh0SWyuTq9JSTktS2lQPrXlcvD66c=";
17   meta = with lib; {
18     description = "Create asciinema videos from a text file";
19     homepage = "https://github.com/garbas/asciinema-scenario/";
20     maintainers = with maintainers; [ garbas ];
21     license = with licenses; [ mit ];
22   };