Skip to content

Instantly share code, notes, and snippets.

@lovesegfault
Created December 3, 2019 07:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lovesegfault/0c347f98194351ee2ab8a2d74e277671 to your computer and use it in GitHub Desktop.
Save lovesegfault/0c347f98194351ee2ab8a2d74e277671 to your computer and use it in GitHub Desktop.
{ gcc8Stdenv, fetchFromGitHub
, pkgconfig, cmake
, libinput, zlib
}:
gcc8Stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "gebaar";
version = "0.0.5";
src = fetchFromGitHub {
owner = "Coffee2CodeNL";
repo = "gebaar-libinput";
rev = "v${version}";
sha256 = "1kqcgwkia1p195xr082838dvj1gqif9d63i8a52jb0lc32zzizh6";
fetchSubmodules = true;
};
nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [
libinput zlib
];
enableParallelBuilding = true;
meta = with gcc8Stdenv.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; [ lovesegfault ];
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment