depot/third_party/nixpkgs/pkgs/tools/inputmethods/interception-tools/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

33 lines
984 B
Nix

{ lib, stdenv, fetchurl, pkgconfig, cmake, libyamlcpp,
libevdev, udev }:
let
version = "0.2.1";
baseName = "interception-tools";
in stdenv.mkDerivation {
name = "${baseName}-${version}";
src = fetchurl {
url = "https://gitlab.com/interception/linux/tools/repository/v${version}/archive.tar.gz";
sha256 = "0lqz89wsf9r5xdgflincysxg4l8fpgg5z8zczhhrg9s5787srfzi";
};
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ libevdev udev libyamlcpp ];
prePatch = ''
substituteInPlace CMakeLists.txt --replace \
'"/usr/include/libevdev-1.0"' \
"\"$(pkg-config --cflags libevdev | cut -c 3-)\""
'';
patches = [ ./fix-udevmon-configuration-job-path.patch ];
meta = {
description = "A minimal composable infrastructure on top of libudev and libevdev";
homepage = "https://gitlab.com/interception/linux/tools";
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.vyp ];
platforms = lib.platforms.linux;
};
}