Merge pull request #74896 from lovesegfault/geebar-libinput

gebaar-libinput: init at 0.0.5
This commit is contained in:
Mario Rodas 2019-12-16 06:37:58 -05:00 committed by GitHub
commit c2be9fe835
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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 {