hhpc: init at 0.3.1
This commit is contained in:
parent
ebe19f5db0
commit
54be55f47c
28
pkgs/tools/misc/hhpc/default.nix
Normal file
28
pkgs/tools/misc/hhpc/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{stdenv, fetchFromGitHub, xorg, pkgconfig}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "hhpc-${version}";
|
||||||
|
version = "0.3.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "aktau";
|
||||||
|
repo = "hhpc";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1djsw1r38mh6zx0rbyn2cfa931hyddib4fl3i27c4z7xinl709ss";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
buildInputs = [ xorg.libX11 ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp hhpc $out/bin/
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Hides the mouse pointer in X11";
|
||||||
|
maintainers = with maintainers; [ nico202 ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
license = stdenv.lib.licenses.bsd3;
|
||||||
|
};
|
||||||
|
}
|
@ -2146,6 +2146,8 @@ in
|
|||||||
|
|
||||||
hevea = callPackage ../tools/typesetting/hevea { };
|
hevea = callPackage ../tools/typesetting/hevea { };
|
||||||
|
|
||||||
|
hhpc = callPackage ../tools/misc/hhpc { };
|
||||||
|
|
||||||
hiera-eyaml = callPackage ../tools/system/hiera-eyaml { };
|
hiera-eyaml = callPackage ../tools/system/hiera-eyaml { };
|
||||||
|
|
||||||
hfsprogs = callPackage ../tools/filesystems/hfsprogs { };
|
hfsprogs = callPackage ../tools/filesystems/hfsprogs { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user