vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / pkgs / tools / inputmethods / interception-tools / default.nix
blob16472a5512ddd07c124538c7f679b88d691d8d49
1 { lib, stdenv, fetchFromGitLab, pkg-config, cmake, yaml-cpp,
2   libevdev, udev, boost }:
4 stdenv.mkDerivation rec {
5   pname = "interception-tools";
6   version = "0.6.8";
7   src = fetchFromGitLab {
8     owner = "interception/linux";
9     repo = "tools";
10     rev = "v${version}";
11     hash = "sha256-jhdgfCWbkF+jD/iXsJ+fYKOtPymxcC46Q4w0aqpvcek=";
12   };
14   nativeBuildInputs = [ cmake pkg-config ];
15   buildInputs = [ libevdev udev yaml-cpp boost ];
17   meta = {
18     description = "Minimal composable infrastructure on top of libudev and libevdev";
19     homepage = "https://gitlab.com/interception/linux/tools";
20     changelog = "https://gitlab.com/interception/linux/tools/-/tags/v${version}";
21     license = lib.licenses.gpl3Only;
22     maintainers = [ lib.maintainers.vyp ];
23     platforms = lib.platforms.linux;
24   };