about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/inputmethods/evscript/default.nix
blob: a75bff0035b8fd5135c0ca81147a94c1a8a56f24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ rustPlatform, lib, fetchFromGitHub }:

rustPlatform.buildRustPackage rec {
  name = "evscript-unstable-${version}";
  version = "2019-02-11";

  src = fetchFromGitHub {
    owner = "myfreeweb";
    repo = "evscript";
    rev = "de6e09b6858ea15893e29293e954b906a4e074d9";
    sha256 = "04sal72shn4vi7x4qzip0rmn14lzbk6fczzf6glvdhjjlia743q7";
  };

  cargoSha256 = "0160ns9ffnnx2bspz5gcvn8ia4pa94np7zv8xf45iqcbk3zlg6gj";

  meta = with lib; {
    description = "Dyon scripting environment for evdev input devices";
    homepage = https://github.com/myfreeweb/evscript;
    license = licenses.unlicense;
    maintainers = with maintainers; [ qyliss ];
    platforms = platforms.linux;
  };
}