summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/inputmethods
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-10 12:18:27 +0100
committerGitHub <noreply@github.com>2021-01-10 12:18:27 +0100
commitd25225b014a04031260d91a03329ea0bd73c2441 (patch)
tree3750ed2d7d19f55def64538110462ccb8b0de562 /pkgs/tools/inputmethods
parenta905b18b46d2d1c7526a3c64caa1ca5d47997aae (diff)
parent8ac4b7c7fd340b82e05af8404140c67850cd530b (diff)
Merge pull request #96039 from MilesBreslin/evscript
Diffstat (limited to 'pkgs/tools/inputmethods')
-rw-r--r--pkgs/tools/inputmethods/evscript/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/tools/inputmethods/evscript/default.nix b/pkgs/tools/inputmethods/evscript/default.nix
new file mode 100644
index 000000000000..95f322ed8c68
--- /dev/null
+++ b/pkgs/tools/inputmethods/evscript/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, rustPlatform, fetchFromGitHub }:
+
+rustPlatform.buildRustPackage rec {
+ pname = "evscript";
+ version = "git-${builtins.substring 0 7 src.rev}";
+
+ src = fetchFromGitHub {
+ owner = "myfreeweb";
+ repo = pname;
+ rev = "47f86f0d15add2af785ea1ff47f24d130026d1b4";
+ sha256 = "1xm8297k0d8d0aq7fxgmibr4qva4d02cb6gnnlzq77jcmnknxv14";
+ };
+
+ cargoSha256 = "1dcyhxfyq0nrjl05g1s9pjkg7vqw63wbdhlskrdcvxncmci3s7rp";
+ verifyCargoDeps = true;
+
+ meta = with stdenv.lib; {
+ homepage = "https://github.com/myfreeweb/${pname}";
+ description = "A tiny sandboxed Dyon scripting environment for evdev input devices";
+ license = licenses.unlicense;
+ maintainers = with maintainers; [ milesbreslin ];
+ platforms = platforms.linux;
+ };
+}