summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/wayland
diff options
context:
space:
mode:
authorWilliButz <wbutz@cyberfnord.de>2019-10-29 14:43:07 +0100
committerWilliButz <wbutz@cyberfnord.de>2019-10-29 14:43:43 +0100
commit5330d56c3b5a9945d024938b2ae7dcad535a2df8 (patch)
treeed7733897b4767d74f46199547b6a210b70cefdf /pkgs/tools/wayland
parentdacc4ac6806bff53473b50547145b243377c3ff9 (diff)
ydotool: init at 0.1.8
Diffstat (limited to 'pkgs/tools/wayland')
-rw-r--r--pkgs/tools/wayland/ydotool/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/tools/wayland/ydotool/default.nix b/pkgs/tools/wayland/ydotool/default.nix
new file mode 100644
index 000000000000..d8b6ad4ff87c
--- /dev/null
+++ b/pkgs/tools/wayland/ydotool/default.nix
@@ -0,0 +1,33 @@
+{ stdenv, fetchFromGitHub, pkgconfig, cmake, boost, libevdevplus, libuinputplus }:
+
+stdenv.mkDerivation rec {
+ pname = "ydotool";
+ version = "0.1.8";
+
+ src = fetchFromGitHub {
+ owner = "ReimuNotMoe";
+ repo = "ydotool";
+ rev = "v${version}";
+ sha256 = "0mx3636p0f8pznmwm4rlbwq7wrmjb2ygkf8b3a6ps96a7j1fw39l";
+ };
+
+ # disable static linking
+ postPatch = ''
+ substituteInPlace CMakeLists.txt --replace \
+ "-static" \
+ ""
+ '';
+
+ nativeBuildInputs = [ cmake pkgconfig ];
+ buildInputs = [
+ boost libevdevplus libuinputplus
+ ];
+
+ meta = with stdenv.lib; {
+ inherit (src.meta) homepage;
+ description = "Generic Linux command-line automation tool";
+ license = licenses.mit;
+ maintainers = with maintainers; [ willibutz ];
+ platforms = with platforms; linux;
+ };
+}