lol

xplugd: init at 1.4

+32
+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
··· 28289 28289 28290 28290 xpdf = libsForQt5.callPackage ../applications/misc/xpdf { }; 28291 28291 28292 + xplugd = callPackage ../tools/X11/xplugd { }; 28293 + 28292 28294 xpointerbarrier = callPackage ../tools/X11/xpointerbarrier {}; 28293 28295 28294 28296 xkb-switch = callPackage ../tools/X11/xkb-switch { };