biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / X11 / xplugd / default.nix
bloba6d0366275fa2cd0dc47de2e1b5ec41d36ac6ac2
1 { lib
2 , stdenv
3 , xorg
4 , pkg-config
5 , fetchFromGitHub
6 , autoreconfHook
7 }:
9 stdenv.mkDerivation rec {
10   pname = "xplugd";
11   version = "1.4";
13   src = fetchFromGitHub {
14     owner = "troglobit";
15     repo = "xplugd";
16     rev = "v${version}";
17     sha256 = "11vjr69prrs4ir9c267zwq4g9liipzrqi0kmw1zg95dbn7r7zmql";
18   };
20   buildInputs = with xorg; [ libX11 libXi libXrandr libXext ];
21   nativeBuildInputs = [ pkg-config autoreconfHook ];
23   meta = with lib; {
24     homepage = "https://github.com/troglobit/xplugd";
25     description = "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     mainProgram = "xplugd";
30   };