commit
a2a5d234a5
23
pkgs/tools/X11/dispad/default.nix
Normal file
23
pkgs/tools/X11/dispad/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, libX11, libXi, confuse }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "dispad-${version}";
|
||||||
|
version = "0.3.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "BlueDragonX";
|
||||||
|
repo = "dispad";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0y0n9mf1hs3s706gkpmg1lh74m6vvkqc9rdbzgc6s2k7vdl2zp1y";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libX11 libXi confuse ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "A small daemon for disabling trackpads while typing";
|
||||||
|
homepage = https://github.com/BlueDragonX/dispad;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = with maintainers; [ zimbatm ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -307,6 +307,8 @@ let
|
|||||||
inherit helperFunctions;
|
inherit helperFunctions;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
dispad = callPackage ../tools/X11/dispad { };
|
||||||
|
|
||||||
scatterOutputHook = makeSetupHook {} ../build-support/setup-hooks/scatter_output.sh;
|
scatterOutputHook = makeSetupHook {} ../build-support/setup-hooks/scatter_output.sh;
|
||||||
|
|
||||||
vsenv = callPackage ../build-support/vsenv {
|
vsenv = callPackage ../build-support/vsenv {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user