blob: 8621e76443659fcc50bfa21822bcf37c89c066c6 (
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
32
33
34
35
36
37
38
39
|
{ lib,
stdenv,
fetchurl,
pkg-config,
libX11,
libXfixes,
libXrandr,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "xpointerbarrier";
version = "20.07";
src = fetchurl {
url = "https://www.uninformativ.de/git/xpointerbarrier/archives/xpointerbarrier-v${finalAttrs.version}.tar.gz";
hash = "sha256-V1sNAQjsPVSjJ2nhCSdZqZQA78pjUE0z3IU4+I85CpI=";
};
nativeBuildInputs = [
pkg-config
];
buildInputs = [
libX11
libXfixes
libXrandr
];
makeFlags = [ "prefix=$(out)" ];
meta = with lib; {
homepage = "https://www.uninformativ.de/git/xpointerbarrier/file/README.html";
description = "Create X11 pointer barriers around your working area";
license = licenses.mit;
maintainers = with maintainers; [ AndersonTorres xzfc ];
platforms = platforms.linux;
mainProgram = "xpointerbarrier";
};
})
|