libuinputplus: init at 2019-10-01
This commit is contained in:
parent
926d6964d9
commit
dacc4ac680
23
pkgs/development/libraries/libuinputplus/default.nix
Normal file
23
pkgs/development/libraries/libuinputplus/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libuinputplus";
|
||||
version = "2019-10-01";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "YukiWorkshop";
|
||||
repo = "libuInputPlus";
|
||||
rev = "962f180b4cc670e1f5cc73c2e4d5d196ae52d630";
|
||||
sha256 = "0jy5i7bmjad7hw1qcyjl4swqribp2027s9g3609zwj7lj8z5x0bg";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkgconfig ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
inherit (src.meta) homepage;
|
||||
description = "Easy-to-use uinput library in C++";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ willibutz ];
|
||||
platforms = with platforms; linux;
|
||||
};
|
||||
}
|
@ -12613,6 +12613,8 @@ in
|
||||
inherit (darwin.apple_sdk.frameworks) Cocoa;
|
||||
};
|
||||
|
||||
libuinputplus = callPackage ../development/libraries/libuinputplus { };
|
||||
|
||||
libunistring = callPackage ../development/libraries/libunistring { };
|
||||
|
||||
libupnp = callPackage ../development/libraries/pupnp { };
|
||||
|
Loading…
Reference in New Issue
Block a user