about summary refs log tree commit diff
path: root/pkgs/applications/window-managers/x-create-mouse-void/default.nix
blob: 86ae59a6152cab1f058653a977624991ebee039f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ stdenv, lib, xorg, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "x-create-mouse-void";
  version = "0.1";

  src = fetchFromGitHub {
    owner = "cas--";
    repo = "XCreateMouseVoid";
    rev = version;
    sha256 = "151pv4gmzz9g6nd1xw94hmawlb5z8rgs1jb3x1zpvn3znd7f355c";
  };

  buildInputs = [ xorg.libX11 ];

  installPhase = ''
    runHook preInstall
    mkdir -pv $out/bin
    cp -a XCreateMouseVoid $out/bin/x-create-mouse-void
    runHook postInstall
  '';

  meta = with lib; {
    homepage = "https://github.com/cas--/XCreateMouseVoid";
    description = "Creates an undecorated black window and prevents the mouse from entering that window";
    platforms = platforms.unix;
    license = licenses.unfreeRedistributable;
    maintainers = with maintainers; [ eigengrau ];
    mainProgram = "x-create-mouse-void";
  };
}