at 22.05-pre 710 B view raw
1{ lib, rustPlatform, fetchFromGitHub }: 2 3rustPlatform.buildRustPackage rec { 4 pname = "evscript"; 5 version = "unstable-2021-06-16"; 6 7 src = fetchFromGitHub { 8 owner = "unrelentingtech"; 9 repo = pname; 10 rev = "25912c0b6446f31b0f64485af3fa4aa8a93b33df"; 11 sha256 = "sha256-apq3kHipEX6zOTNwqpIQR46JqmeE7EKVSOGrNNSkyu8="; 12 }; 13 14 cargoSha256 = "sha256-1aR9/fhJQ+keRIxSG2cpY1HTalE6nM+MTb1Za3Tot28="; 15 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 }; 23}