lol

Merge pull request #131368 from akho/xplugd-1.4

authored by

Artturi and committed by
GitHub
e525b9ea bd807ed5

+38
+6
maintainers/maintainer-list.nix
··· 390 390 githubId = 1318982; 391 391 name = "Anders Claesson"; 392 392 }; 393 + akho = { 394 + name = "Alexander Khodyrev"; 395 + email = "a@akho.name"; 396 + github = "akho"; 397 + githubId = 104951; 398 + }; 393 399 akru = { 394 400 email = "mail@akru.me"; 395 401 github = "akru";
+30
pkgs/tools/X11/xplugd/default.nix
··· 1 + { lib 2 + , stdenv 3 + , xorg 4 + , pkg-config 5 + , fetchFromGitHub 6 + , autoreconfHook 7 + }: 8 + 9 + stdenv.mkDerivation rec { 10 + pname = "xplugd"; 11 + version = "1.4"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "troglobit"; 15 + repo = "xplugd"; 16 + rev = "v${version}"; 17 + sha256 = "11vjr69prrs4ir9c267zwq4g9liipzrqi0kmw1zg95dbn7r7zmql"; 18 + }; 19 + 20 + buildInputs = with xorg; [ libX11 libXi libXrandr libXext ]; 21 + nativeBuildInputs = [ pkg-config autoreconfHook ]; 22 + 23 + meta = with lib; { 24 + homepage = "https://github.com/troglobit/xplugd"; 25 + description = "A UNIX daemon that executes a script on X input and RandR changes"; 26 + license = licenses.mit; 27 + platforms = platforms.linux; 28 + maintainers = with maintainers; [ akho ]; 29 + }; 30 + }
+2
pkgs/top-level/all-packages.nix
··· 28506 28506 28507 28507 xpdf = libsForQt5.callPackage ../applications/misc/xpdf { }; 28508 28508 28509 + xplugd = callPackage ../tools/X11/xplugd { }; 28510 + 28509 28511 xpointerbarrier = callPackage ../tools/X11/xpointerbarrier {}; 28510 28512 28511 28513 xkb-switch = callPackage ../tools/X11/xkb-switch { };