mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
xssproxy: init at 1.0.0
This commit is contained in:
parent
b24099cb17
commit
22002cb41b
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 { };
|
||||
|
||||
xssproxy = callPackage ../misc/screensavers/xssproxy { };
|
||||
|
||||
xsynth_dssi = callPackage ../applications/audio/xsynth-dssi { };
|
||||
|
||||
xterm = callPackage ../applications/misc/xterm { };
|
||||
|
Loading…
Reference in New Issue
Block a user