Merge pull request #28629 from benley/xssproxy-1.0.0

xssproxy: init at 1.0.0
This commit is contained in:
Jörg Thalheim 2017-08-28 10:46:46 +01:00 committed by GitHub
commit 0a3a17cd7e
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv, fetchFromGitHub, glib, pkgconfig, xorg, dbus }:
let rev = "1.0.0"; in
stdenv.mkDerivation {
name = "xssproxy-${rev}";
src = fetchFromGitHub {
owner = "timakro";
repo = "xssproxy";
rev = "v${rev}";
sha256 = "0c83wmipnsdnbihc5niyczs7jrkss2s8n6iwwjdia7hkjzbd0hl7";
};
buildInputs = [ glib pkgconfig 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 = stdenv.lib.licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [ benley ];
platforms = stdenv.lib.platforms.unix;
};
}

View file

@ -17007,6 +17007,8 @@ with pkgs;
xss-lock = callPackage ../misc/screensavers/xss-lock { };
xssproxy = callPackage ../misc/screensavers/xssproxy { };
xsynth_dssi = callPackage ../applications/audio/xsynth-dssi { };
xterm = callPackage ../applications/misc/xterm { };