depot/third_party/nixpkgs/pkgs/tools/inputmethods/gebaar-libinput/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

25 lines
745 B
Nix

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