Merge pull request #74896 from lovesegfault/geebar-libinput
gebaar-libinput: init at 0.0.5
This commit is contained in:
commit
c2be9fe835
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/inputmethods/gebaar-libinput/default.nix
Normal file
25
pkgs/tools/inputmethods/gebaar-libinput/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, lib, fetchFromGitHub, pkgconfig, cmake, libinput, zlib }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gebaar-libinput";
|
||||
version = "0.0.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Coffee2CodeNL";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1kqcgwkia1p195xr082838dvj1gqif9d63i8a52jb0lc32zzizh6";
|
||||
fetchSubmodules = true;
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig cmake ];
|
||||
buildInputs = [ libinput zlib ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Gebaar, A Super Simple WM Independent Touchpad Gesture Daemon for libinput";
|
||||
homepage = "https://github.com/Coffee2CodeNL/gebaar-libinput";
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ colemickens lovesegfault ];
|
||||
};
|
||||
}
|
|
@ -2436,6 +2436,8 @@ in
|
|||
|
||||
evdevremapkeys = callPackage ../tools/inputmethods/evdevremapkeys { };
|
||||
|
||||
gebaar-libinput = callPackage ../tools/inputmethods/gebaar-libinput { };
|
||||
|
||||
libpinyin = callPackage ../development/libraries/libpinyin { };
|
||||
|
||||
libskk = callPackage ../development/libraries/libskk {
|
||||
|
|
Loading…
Reference in a new issue