fork
Configure Feed
Select the types of activity you want to include in your feed.
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib,
2 stdenv,
3 fetchurl,
4 pkg-config,
5 libX11,
6 libXfixes,
7 libXrandr,
8}:
9
10stdenv.mkDerivation (finalAttrs: {
11 pname = "xpointerbarrier";
12 version = "20.07";
13
14 src = fetchurl {
15 url = "https://www.uninformativ.de/git/xpointerbarrier/archives/xpointerbarrier-v${finalAttrs.version}.tar.gz";
16 hash = "sha256-V1sNAQjsPVSjJ2nhCSdZqZQA78pjUE0z3IU4+I85CpI=";
17 };
18
19 nativeBuildInputs = [
20 pkg-config
21 ];
22
23 buildInputs = [
24 libX11
25 libXfixes
26 libXrandr
27 ];
28
29 makeFlags = [ "prefix=$(out)" ];
30
31 meta = with lib; {
32 homepage = "https://www.uninformativ.de/git/xpointerbarrier/file/README.html";
33 description = "Create X11 pointer barriers around your working area";
34 license = licenses.mit;
35 maintainers = with maintainers; [ AndersonTorres xzfc ];
36 platforms = platforms.linux;
37 };
38})