python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / inputmethods / evscript / default.nix
blob8afd4804e0ed2749b1dafd7b1225f36fa2ee003f
1 { lib, rustPlatform, fetchFromGitHub }:
3 rustPlatform.buildRustPackage rec {
4   pname = "evscript";
5   version = "unstable-2021-06-16";
7   src = fetchFromGitHub {
8     owner = "unrelentingtech";
9     repo = pname;
10     rev = "25912c0b6446f31b0f64485af3fa4aa8a93b33df";
11     sha256 = "sha256-apq3kHipEX6zOTNwqpIQR46JqmeE7EKVSOGrNNSkyu8=";
12   };
14   cargoSha256 = "sha256-1aR9/fhJQ+keRIxSG2cpY1HTalE6nM+MTb1Za3Tot28=";
16   meta = with lib; {
17     homepage = "https://github.com/unrelentingtech/evscript";
18     description = "A tiny sandboxed Dyon scripting environment for evdev input devices";
19     license = licenses.unlicense;
20     maintainers = with maintainers; [ milesbreslin ];
21     platforms = platforms.linux;
22   };