nixpkgs/pkgs/misc/screensavers/xssproxy/default.nix
2022-07-31 07:02:26 +00:00

30 lines
764 B
Nix

{ lib, stdenv, fetchFromGitHub, glib, pkg-config, xorg, dbus }:
stdenv.mkDerivation rec {
pname = "xssproxy";
version = "1.0.1";
src = fetchFromGitHub {
owner = "timakro";
repo = "xssproxy";
rev = "v${version}";
sha256 = "sha256-xaFr+AM5GdTZQsN1g8QsXgzsfve9GoteiXHpoMvwEBg=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ glib xorg.libX11 xorg.libXScrnSaver dbus ];
makeFlags = [
"bindir=$(out)/bin"
"man1dir=$(out)/share/man/man1"
];
meta = {
description = "Forward freedesktop.org Idle Inhibition Service calls to Xss";
homepage = "https://github.com/timakro/xssproxy";
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ benley ];
platforms = lib.platforms.unix;
};
}