summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/inputmethods
diff options
context:
space:
mode:
authorMiles Breslin <milesbreslin@gmail.com>2020-08-22 15:39:03 -0700
committerMiles Breslin <milesbreslin@gmail.com>2021-01-07 14:13:00 -0800
commit8ac4b7c7fd340b82e05af8404140c67850cd530b (patch)
tree7d7515d51ddc1bd89a94121293244fadc5b723ff /pkgs/tools/inputmethods
parentb175a9a9605bcca8aa141b386327e20bb1dee563 (diff)
evscript: Init at git-47f86f0
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;
+ };
+}