summary refs log tree commit diff
path: root/pkgs/applications/misc/iptsd/default.nix
blob: c5a23840264d3c95edcf5a0b240eaaa6f4343b58 (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
34
35
36
37
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, systemd, inih }:

stdenv.mkDerivation rec {
  pname = "iptsd";
  version = "0.4";

  src = fetchFromGitHub {
    owner = "linux-surface";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-CoPgkt7n2kk7WlQHe0RjNlxfp2Nd8BbIE2gyf0bOBy4=";
  };

  nativeBuildInputs = [ meson ninja pkg-config ];

  buildInputs = [ systemd inih ];

  # Original installs udev rules and service config into global paths
  postPatch = ''
    substituteInPlace meson.build \
      --replace "install_dir: unitdir" "install_dir: datadir" \
      --replace "install_dir: rulesdir" "install_dir: datadir" \
  '';
  mesonFlags = [
    "-Dsystemd=true"
    "-Dsample_config=false"
    "-Ddebug_tool=false"
  ];

  meta = with lib; {
    description = "Userspace daemon for Intel Precise Touch & Stylus";
    homepage = "https://github.com/linux-surface/iptsd";
    license = licenses.gpl2Only;
    maintainers = with maintainers; [ tomberek ];
    platforms = platforms.linux;
  };
}