2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, libX11, libXi, libconfuse }:
|
2016-02-18 17:02:05 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "dispad";
|
2016-02-18 17:02:05 +00:00
|
|
|
version = "0.3.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "BlueDragonX";
|
|
|
|
repo = "dispad";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "0y0n9mf1hs3s706gkpmg1lh74m6vvkqc9rdbzgc6s2k7vdl2zp1y";
|
|
|
|
};
|
|
|
|
|
2018-11-25 17:20:42 +00:00
|
|
|
buildInputs = [ libX11 libXi libconfuse ];
|
2016-02-18 17:02:05 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-02-18 17:02:05 +00:00
|
|
|
description = "A small daemon for disabling trackpads while typing";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/BlueDragonX/dispad";
|
2016-02-18 17:02:05 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ zimbatm ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|