nixpkgs/pkgs/by-name/xp/xplugd/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
767 B
Nix
Raw Normal View History

2021-07-24 17:57:28 +00:00
{
lib,
stdenv,
xorg,
pkg-config,
fetchFromGitHub,
autoreconfHook,
}:
stdenv.mkDerivation rec {
pname = "xplugd";
version = "1.4";
src = fetchFromGitHub {
owner = "troglobit";
repo = "xplugd";
rev = "v${version}";
sha256 = "11vjr69prrs4ir9c267zwq4g9liipzrqi0kmw1zg95dbn7r7zmql";
};
buildInputs = with xorg; [
libX11
libXi
libXrandr
libXext
];
nativeBuildInputs = [
pkg-config
autoreconfHook
];
2021-07-24 17:57:28 +00:00
meta = with lib; {
homepage = "https://github.com/troglobit/xplugd";
description = "UNIX daemon that executes a script on X input and RandR changes";
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ akho ];
2023-11-23 21:09:35 +00:00
mainProgram = "xplugd";
2021-07-24 17:57:28 +00:00
};
}