Merge pull request #28629 from benley/xssproxy-1.0.0
xssproxy: init at 1.0.0
This commit is contained in:
commit
0a3a17cd7e
2 changed files with 31 additions and 0 deletions
29
pkgs/misc/screensavers/xssproxy/default.nix
Normal file
29
pkgs/misc/screensavers/xssproxy/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
|
@ -17007,6 +17007,8 @@ with pkgs;
|
||||||
|
|
||||||
xss-lock = callPackage ../misc/screensavers/xss-lock { };
|
xss-lock = callPackage ../misc/screensavers/xss-lock { };
|
||||||
|
|
||||||
|
xssproxy = callPackage ../misc/screensavers/xssproxy { };
|
||||||
|
|
||||||
xsynth_dssi = callPackage ../applications/audio/xsynth-dssi { };
|
xsynth_dssi = callPackage ../applications/audio/xsynth-dssi { };
|
||||||
|
|
||||||
xterm = callPackage ../applications/misc/xterm { };
|
xterm = callPackage ../applications/misc/xterm { };
|
||||||
|
|
Loading…
Reference in a new issue