Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ stdenv, lib, fetchFromGitHub, pkg-config, cmake, libinput, zlib }: 2 3stdenv.mkDerivation rec { 4 pname = "gebaar-libinput"; 5 version = "0.0.5"; 6 7 src = fetchFromGitHub { 8 owner = "Coffee2CodeNL"; 9 repo = pname; 10 rev = "v${version}"; 11 sha256 = "1kqcgwkia1p195xr082838dvj1gqif9d63i8a52jb0lc32zzizh6"; 12 fetchSubmodules = true; 13 }; 14 15 nativeBuildInputs = [ pkg-config cmake ]; 16 buildInputs = [ libinput zlib ]; 17 18 meta = with lib; { 19 description = "Gebaar, A Super Simple WM Independent Touchpad Gesture Daemon for libinput"; 20 homepage = "https://github.com/Coffee2CodeNL/gebaar-libinput"; 21 license = licenses.gpl3; 22 platforms = platforms.linux; 23 maintainers = with maintainers; [ colemickens lovesegfault ]; 24 }; 25}