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 12:41:18 +00:00
|
|
|
pname = "dispad";
|
2016-02-18 17:02:05 +00:00
|
|
|
version = "0.3.1";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "BlueDragonX";
|
|
|
|
repo = "dispad";
|
|
|
|
rev = "v${version}";
|
2024-09-14 21:47:11 +00:00
|
|
|
hash = "sha256-PtwvaNtnCm3Y+6vlxPDc21RyIA2v3vkMOHpoGFxNFng=";
|
2016-02-18 17:02:05 +00:00
|
|
|
};
|
|
|
|
|
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 = "Small daemon for disabling trackpads while typing";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/BlueDragonX/dispad";
|
2024-04-26 11:35:31 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2016-02-18 17:02:05 +00:00
|
|
|
maintainers = with maintainers; [ zimbatm ];
|
|
|
|
platforms = platforms.linux;
|
2023-11-23 21:09:35 +00:00
|
|
|
mainProgram = "dispad";
|
2016-02-18 17:02:05 +00:00
|
|
|
};
|
|
|
|
}
|