x11idle: init at unstable-2017-07-01 (#27062)
* Add myself to the maintainers list * Define the derivation for x11idle
This commit is contained in:
parent
cc83f35118
commit
fa2c22ea97
@ -530,6 +530,7 @@
|
|||||||
steveej = "Stefan Junker <mail@stefanjunker.de>";
|
steveej = "Stefan Junker <mail@stefanjunker.de>";
|
||||||
SuprDewd = "Bjarki Ágúst Guðmundsson <suprdewd@gmail.com>";
|
SuprDewd = "Bjarki Ágúst Guðmundsson <suprdewd@gmail.com>";
|
||||||
swarren83 = "Shawn Warren <shawn.w.warren@gmail.com>";
|
swarren83 = "Shawn Warren <shawn.w.warren@gmail.com>";
|
||||||
|
swflint = "Samuel W. Flint <swflint@flintfam.org>";
|
||||||
swistak35 = "Rafał Łasocha <me@swistak35.com>";
|
swistak35 = "Rafał Łasocha <me@swistak35.com>";
|
||||||
szczyp = "Szczyp <qb@szczyp.com>";
|
szczyp = "Szczyp <qb@szczyp.com>";
|
||||||
sztupi = "Attila Sztupak <attila.sztupak@gmail.com>";
|
sztupi = "Attila Sztupak <attila.sztupak@gmail.com>";
|
||||||
|
33
pkgs/tools/misc/x11idle/default.nix
Normal file
33
pkgs/tools/misc/x11idle/default.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{ stdenv, xlibs, fetchgit, libXScrnSaver, libX11 }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "x11idle-unstable-2017-07-01";
|
||||||
|
|
||||||
|
src = fetchgit {
|
||||||
|
url = "git://orgmode.org/org-mode.git";
|
||||||
|
rev = "fbd865941f3105f689f78bf053bb3b353b9b8a23";
|
||||||
|
sha256 = "0ma3m48f4s38xln0gl1ww9i5x28ij0ipxc94kx5h2931zy7lqzvz";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libXScrnSaver libX11 ];
|
||||||
|
|
||||||
|
unpackPhase = ":";
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
gcc -lXss -lX11 $src/contrib/scripts/x11idle.c -o $out/bin/x11idle
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = ''
|
||||||
|
Compute consecutive idle time for current X11 session with millisecond resolution
|
||||||
|
'';
|
||||||
|
longDescription = ''
|
||||||
|
Idle time passes when the user does not act, i.e. when the user doesn't move the mouse or use the keyboard.
|
||||||
|
'';
|
||||||
|
homepage = "http://orgmode.org/";
|
||||||
|
license = licenses.gpl3;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = [ maintainers.swflint ];
|
||||||
|
};
|
||||||
|
}
|
@ -18878,6 +18878,8 @@ with pkgs;
|
|||||||
wxGTK = wxGTK30;
|
wxGTK = wxGTK30;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
x11idle = callPackage ../tools/misc/x11idle {};
|
||||||
|
|
||||||
x2x = callPackage ../tools/X11/x2x { };
|
x2x = callPackage ../tools/X11/x2x { };
|
||||||
|
|
||||||
xboxdrv = callPackage ../misc/drivers/xboxdrv { };
|
xboxdrv = callPackage ../misc/drivers/xboxdrv { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user