blob: f11224d746e0675bb102fbfced5ca141dfd11574 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{
lib,
stdenv,
fetchFromGitHub,
meson,
ninja,
pkg-config,
libxkbcommon,
wayland,
wayland-scanner,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "wtype";
version = "0.4";
src = fetchFromGitHub {
owner = "atx";
repo = "wtype";
rev = "v${finalAttrs.version}";
hash = "sha256-TfpzAi0mkXugQn70MISyNFOXIJpDwvgh3enGv0Xq8S4=";
};
strictDeps = true;
nativeBuildInputs = [
meson
ninja
pkg-config
wayland-scanner
];
buildInputs = [
libxkbcommon
wayland
];
meta = {
description = "xdotool type for wayland";
homepage = "https://github.com/atx/wtype";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ justinlovinger ];
mainProgram = "wtype";
};
})
|