nixpkgs/pkgs/applications/misc/iptsd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
1.5 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, cmake
, meson
, ninja
, pkg-config
, cli11
, hidrd
, inih
, microsoft_gsl
, spdlog
, systemd
}:
2021-05-27 15:48:59 +00:00
stdenv.mkDerivation rec {
pname = "iptsd";
2023-02-25 12:58:51 +00:00
version = "1.1.1";
2021-05-27 15:48:59 +00:00
src = fetchFromGitHub {
owner = "linux-surface";
repo = pname;
rev = "v${version}";
2023-02-25 12:58:51 +00:00
hash = "sha256-IwvoqmqJTM6xtEp7AzLgT4dZgRsmXYmu6Zivx3oSm+Q=";
2021-05-27 15:48:59 +00:00
};
nativeBuildInputs = [
cmake
meson
ninja
pkg-config
];
dontUseCmakeConfigure = true;
2021-05-27 15:48:59 +00:00
buildInputs = [
cli11
hidrd
inih
microsoft_gsl
spdlog
systemd
];
2021-05-27 15:48:59 +00:00
# Original installs udev rules and service config into global paths
postPatch = ''
substituteInPlace etc/meson.build \
--replace "install_dir: unitdir" "install_dir: '$out/etc/systemd/system'" \
--replace "install_dir: rulesdir" "install_dir: '$out/etc/udev/rules.d'"
substituteInPlace etc/udev/50-ipts.rules \
--replace "/bin/systemd-escape" "${systemd}/bin/systemd-escape"
2021-05-27 15:48:59 +00:00
'';
2021-05-27 15:48:59 +00:00
mesonFlags = [
"-Dservice_manager=systemd"
2021-05-27 15:48:59 +00:00
"-Dsample_config=false"
"-Ddebug_tools="
"-Db_lto=false" # plugin needed to handle lto object -> undefined reference to ...
2021-05-27 15:48:59 +00:00
];
meta = with lib; {
changelog = "https://github.com/linux-surface/iptsd/releases/tag/${src.rev}";
2021-05-27 15:48:59 +00:00
description = "Userspace daemon for Intel Precise Touch & Stylus";
homepage = "https://github.com/linux-surface/iptsd";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ tomberek dotlambda ];
2021-05-27 15:48:59 +00:00
platforms = platforms.linux;
};
}