gebaar-libinput: init at 0.0.5

This commit is contained in:
Bernardo Meurer 2019-12-02 23:32:27 -08:00 committed by Mario Rodas
parent 297604cb35
commit 435b929d52
No known key found for this signature in database
GPG Key ID: 4C4BEFD7B18DC5E8
2 changed files with 27 additions and 0 deletions

View 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 ];
};
}

View File

@ -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 {