summary refs log tree commit diff
path: root/pkgs/tools/wayland/ydotool/default.nix
blob: d8b6ad4ff87c0978d30d0b8d05ca8b7b23f1a0e6 (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
24
25
26
27
28
29
30
31
32
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;
  };
}