nixpkgs/pkgs/misc/screensavers/xssproxy/default.nix

31 lines
765 B
Nix
Raw Normal View History

2021-01-17 02:30:45 +00:00
{ lib, stdenv, fetchFromGitHub, glib, pkg-config, xorg, dbus }:
2017-08-28 08:02:42 +00:00
let rev = "1.0.0"; in
stdenv.mkDerivation {
name = "xssproxy-${rev}";
src = fetchFromGitHub {
owner = "timakro";
repo = "xssproxy";
rev = "v${rev}";
sha256 = "0c83wmipnsdnbihc5niyczs7jrkss2s8n6iwwjdia7hkjzbd0hl7";
};
2021-01-17 02:30:45 +00:00
nativeBuildInputs = [ pkg-config ];
buildInputs = [ glib xorg.libX11 xorg.libXScrnSaver dbus ];
2017-08-28 08:02:42 +00:00
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";
2021-01-15 13:21:58 +00:00
license = lib.licenses.gpl3;
maintainers = with lib.maintainers; [ benley ];
platforms = lib.platforms.unix;
2017-08-28 08:02:42 +00:00
};
}