nixpkgs/pkgs/tools/inputmethods/evscript/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
710 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchFromGitHub }:
2020-08-23 01:39:03 +03:00
rustPlatform.buildRustPackage rec {
pname = "evscript";
version = "unstable-2021-06-16";
2020-08-23 01:39:03 +03:00
src = fetchFromGitHub {
owner = "unrelentingtech";
2020-08-23 01:39:03 +03:00
repo = pname;
rev = "25912c0b6446f31b0f64485af3fa4aa8a93b33df";
sha256 = "sha256-apq3kHipEX6zOTNwqpIQR46JqmeE7EKVSOGrNNSkyu8=";
2020-08-23 01:39:03 +03:00
};
cargoSha256 = "sha256-1aR9/fhJQ+keRIxSG2cpY1HTalE6nM+MTb1Za3Tot28=";
2020-08-23 01:39:03 +03:00
2021-01-15 12:19:50 +03:00
meta = with lib; {
homepage = "https://github.com/unrelentingtech/evscript";
2020-08-23 01:39:03 +03:00
description = "A tiny sandboxed Dyon scripting environment for evdev input devices";
license = licenses.unlicense;
maintainers = with maintainers; [ milesbreslin ];
platforms = platforms.linux;
};
}