tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
xplugd: init at 1.4
Alexander Khodyrev
4 years ago
3fe085cb
2bb1a8df
+32
2 changed files
expand all
collapse all
unified
split
pkgs
tools
X11
xplugd
default.nix
top-level
all-packages.nix
+30
pkgs/tools/X11/xplugd/default.nix
···
1
1
+
{ lib
2
2
+
, stdenv
3
3
+
, xorg
4
4
+
, pkg-config
5
5
+
, fetchFromGitHub
6
6
+
, autoreconfHook
7
7
+
}:
8
8
+
9
9
+
stdenv.mkDerivation rec {
10
10
+
pname = "xplugd";
11
11
+
version = "1.4";
12
12
+
13
13
+
src = fetchFromGitHub {
14
14
+
owner = "troglobit";
15
15
+
repo = "xplugd";
16
16
+
rev = "v${version}";
17
17
+
sha256 = "11vjr69prrs4ir9c267zwq4g9liipzrqi0kmw1zg95dbn7r7zmql";
18
18
+
};
19
19
+
20
20
+
buildInputs = with xorg; [ libX11 libXi libXrandr libXext ];
21
21
+
nativeBuildInputs = [ pkg-config autoreconfHook ];
22
22
+
23
23
+
meta = with lib; {
24
24
+
homepage = "https://github.com/troglobit/xplugd";
25
25
+
description = "A UNIX daemon that executes a script on X input and RandR changes";
26
26
+
license = licenses.mit;
27
27
+
platforms = platforms.linux;
28
28
+
maintainers = with maintainers; [ akho ];
29
29
+
};
30
30
+
}
+2
pkgs/top-level/all-packages.nix
···
28289
28289
28290
28290
xpdf = libsForQt5.callPackage ../applications/misc/xpdf { };
28291
28291
28292
28292
+
xplugd = callPackage ../tools/X11/xplugd { };
28293
28293
+
28292
28294
xpointerbarrier = callPackage ../tools/X11/xpointerbarrier {};
28293
28295
28294
28296
xkb-switch = callPackage ../tools/X11/xkb-switch { };