python312Packages.llama-index: 0.12.9 -> 0.12.9.post1 (#371957)
[NixPkgs.git] / pkgs / by-name / li / libuinputplus / package.nix
blob8d1ed42b6ca6a58c658da88915eab48549605a93
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   cmake,
6   pkg-config,
7 }:
8 stdenv.mkDerivation rec {
9   pname = "libuinputplus";
10   version = "2021-04-02";
12   # adds missing cmake install directives
13   # https://github.com/YukiWorkshop/libuInputPlus/pull/7
14   patches = [ ./0001-Add-cmake-install-directives.patch ];
16   src = fetchFromGitHub {
17     owner = "YukiWorkshop";
18     repo = "libuInputPlus";
19     rev = "f7f18eb339bba61a43f2cad481a9b1a453a66957";
20     sha256 = "0sind2ghhy4h9kfkr5hsmhcq0di4ifwqyv4gac96rgj5mwvs33lp";
21   };
23   nativeBuildInputs = [
24     cmake
25     pkg-config
26   ];
28   meta = with lib; {
29     inherit (src.meta) homepage;
30     description = "Easy-to-use uinput library in C++";
31     license = licenses.mit;
32     maintainers = with maintainers; [ willibutz ];
33     platforms = with platforms; linux;
34   };