summary refs log tree commit diff
path: root/pkgs/tools/misc/hhpc/default.nix
blob: 5f02121e59f54bbac1d91cf44bb9324f906d060c (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
{lib, stdenv, fetchFromGitHub, xorg, pkg-config}:

stdenv.mkDerivation rec {
  pname = "hhpc";
  version = "0.3.1";

  src = fetchFromGitHub {
    owner = "aktau";
    repo = "hhpc";
    rev = "v${version}";
    sha256 = "1djsw1r38mh6zx0rbyn2cfa931hyddib4fl3i27c4z7xinl709ss";
  };

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ xorg.libX11 ];

  installPhase = ''
      mkdir -p $out/bin
      cp hhpc $out/bin/
  '';

  meta = with lib; {
    description = "Hides the mouse pointer in X11";
    maintainers = with maintainers; [ nico202 ];
    platforms = platforms.unix;
    license = lib.licenses.bsd3;
  };
}