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

23 lines
660 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, xorg, fetchgit }:
2017-10-23 12:29:16 +00: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 12:29:16 +00:00
rev = "v${version}";
2019-01-04 08:55:58 +00:00
sha256 = "1k7i641x18qhjm0llsaqn2h2g9k31kgv6p8sildllmbvgxyrgvq7";
2017-10-23 12:29:16 +00:00
};
buildInputs = [ xorg.libX11 xorg.libXfixes xorg.libXrandr ];
makeFlags = [ "prefix=$(out)" ];
2017-10-23 12:29:16 +00:00
meta = {
homepage = "https://uninformativ.de/git/xpointerbarrier";
2017-10-23 12:29:16 +00:00
description = "Create X11 pointer barriers around your working area";
2021-01-15 09:19:50 +00:00
license = lib.licenses.mit;
maintainers = [ lib.maintainers.xzfc ];
platforms = lib.platforms.linux;
2017-10-23 12:29:16 +00:00
};
}