blob: d1d949f1f68d776efe1c7d76e6aadef10e5e54f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{
lib,
rustPlatform,
fetchFromCodeberg,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "evscript";
version = "0.1.0";
src = fetchFromCodeberg {
owner = "valpackett";
repo = "evscript";
rev = finalAttrs.version;
hash = "sha256-lCXDDLovUb5aSOPTyVJL25v1JT1BGrrUlUR0Mu0XX4Q=";
};
cargoHash = "sha256-L0qwHWxMf/Nd0B2FWLIpKLgrs2LRyTOwuG/7keMI2zE=";
meta = {
homepage = "https://codeberg.org/valpackett/evscript";
description = "Tiny sandboxed Dyon scripting environment for evdev input devices";
mainProgram = "evscript";
license = lib.licenses.unlicense;
maintainers = with lib.maintainers; [ milesbreslin ];
platforms = lib.platforms.linux;
};
})
|