nixpkgs/pkgs/by-name/di/dispad/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
645 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, libX11, libXi, libconfuse }:
2016-02-18 17:02:05 +00:00
stdenv.mkDerivation rec {
pname = "dispad";
2016-02-18 17:02:05 +00:00
version = "0.3.1";
src = fetchFromGitHub {
owner = "BlueDragonX";
repo = "dispad";
rev = "v${version}";
hash = "sha256-PtwvaNtnCm3Y+6vlxPDc21RyIA2v3vkMOHpoGFxNFng=";
2016-02-18 17:02:05 +00:00
};
buildInputs = [ libX11 libXi libconfuse ];
2016-02-18 17:02:05 +00:00
meta = with lib; {
2016-02-18 17:02:05 +00:00
description = "Small daemon for disabling trackpads while typing";
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
};
}