mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
25 lines
648 B
Nix
25 lines
648 B
Nix
{ lib, stdenv, fetchFromGitHub, libX11, libXi, libconfuse }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dispad";
|
|
version = "0.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BlueDragonX";
|
|
repo = "dispad";
|
|
rev = "v${version}";
|
|
sha256 = "0y0n9mf1hs3s706gkpmg1lh74m6vvkqc9rdbzgc6s2k7vdl2zp1y";
|
|
};
|
|
|
|
buildInputs = [ libX11 libXi libconfuse ];
|
|
|
|
meta = with lib; {
|
|
description = "Small daemon for disabling trackpads while typing";
|
|
homepage = "https://github.com/BlueDragonX/dispad";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ zimbatm ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "dispad";
|
|
};
|
|
}
|