libevdevplus: init at 2019-10-01
This commit is contained in:
parent
14f812aeef
commit
926d6964d9
23
pkgs/development/libraries/libevdevplus/default.nix
Normal file
23
pkgs/development/libraries/libevdevplus/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, fetchFromGitHub, cmake, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libevdevplus";
|
||||
version = "2019-10-01";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "YukiWorkshop";
|
||||
repo = "libevdevPlus";
|
||||
rev = "e863df2ade43e2c7d7748cc33ca27fb3eed325ca";
|
||||
sha256 = "18z6pn4j7fhmwwh0q22ip5nn7sc1hfgwvkdzqhkja60i8cw2cvvj";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkgconfig ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
inherit (src.meta) homepage;
|
||||
description = "Easy-to-use event device library in C++";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ willibutz ];
|
||||
platforms = with platforms; linux;
|
||||
};
|
||||
}
|
@ -4598,6 +4598,8 @@ in
|
||||
|
||||
libevdev = callPackage ../development/libraries/libevdev { };
|
||||
|
||||
libevdevplus = callPackage ../development/libraries/libevdevplus { };
|
||||
|
||||
libfann = callPackage ../development/libraries/libfann { };
|
||||
|
||||
libfsm = callPackage ../development/libraries/libfsm { };
|
||||
|
Loading…
Reference in New Issue
Block a user