nixpkgs/pkgs/development/libraries/libuinputplus/default.nix
2021-01-21 19:11:02 -08:00

24 lines
631 B
Nix

{ lib, stdenv, fetchFromGitHub, cmake, pkg-config }:
stdenv.mkDerivation rec {
pname = "libuinputplus";
version = "2019-10-01";
src = fetchFromGitHub {
owner = "YukiWorkshop";
repo = "libuInputPlus";
rev = "962f180b4cc670e1f5cc73c2e4d5d196ae52d630";
sha256 = "0jy5i7bmjad7hw1qcyjl4swqribp2027s9g3609zwj7lj8z5x0bg";
};
nativeBuildInputs = [ cmake pkg-config ];
meta = with lib; {
inherit (src.meta) homepage;
description = "Easy-to-use uinput library in C++";
license = licenses.mit;
maintainers = with maintainers; [ willibutz ];
platforms = with platforms; linux;
};
}