nixpkgs/pkgs/tools/X11/xpointerbarrier/default.nix

23 lines
670 B
Nix
Raw Normal View History

2019-01-04 08:55:58 +00:00
{ stdenv, xorg, fetchgit }:
2017-10-23 13:29:16 +01:00
stdenv.mkDerivation rec {
pname = "xpointerbarrier";
2019-01-04 08:55:58 +00:00
version = "18.06";
src = fetchgit {
url = "https://www.uninformativ.de/git/xpointerbarrier.git";
2017-10-23 13:29:16 +01:00
rev = "v${version}";
2019-01-04 08:55:58 +00:00
sha256 = "1k7i641x18qhjm0llsaqn2h2g9k31kgv6p8sildllmbvgxyrgvq7";
2017-10-23 13:29:16 +01:00
};
buildInputs = [ xorg.libX11 xorg.libXfixes xorg.libXrandr ];
makeFlags = "prefix=$(out)";
meta = {
2019-01-04 08:55:58 +00:00
homepage = https://uninformativ.de/git/xpointerbarrier;
2017-10-23 13:29:16 +01:00
description = "Create X11 pointer barriers around your working area";
license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.xzfc ];
2017-10-23 13:29:16 +01:00
platforms = stdenv.lib.platforms.linux;
};
}