xprintidle: init at 0.2.4

main
Francesco Gazzetta 2 years ago
parent effc361669
commit 745dd2d18b
  1. 40
      pkgs/tools/X11/xprintidle/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,40 @@
{ lib
, stdenv
, fetchFromGitHub
, meson
, ninja
, pkg-config
, xorg
}:
stdenv.mkDerivation rec {
pname = "xprintidle";
version = "0.2.4";
src = fetchFromGitHub {
owner = "g0hl1n";
repo = "xprintidle";
rev = version;
sha256 = "sha256-CgjHTvwQKR/TPQyEWKxN5j97Sh2iec0BQPhC96sfyoI=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
];
buildInputs = [
xorg.libXScrnSaver
xorg.libX11
xorg.libXext
];
meta = with lib; {
homepage = "https://github.com/g0hl1n/xprintidle";
description = "A utility that queries the X server for the user's idle time and prints it to stdout";
license = licenses.gpl2Only;
maintainers = with maintainers; [ fgaz ];
platforms = platforms.linux;
};
}

@ -11238,6 +11238,8 @@ with pkgs;
xfstests = callPackage ../tools/misc/xfstests { };
xprintidle = callPackage ../tools/X11/xprintidle {};
xprintidle-ng = callPackage ../tools/X11/xprintidle-ng {};
xscast = callPackage ../applications/video/xscast { };

Loading…
Cancel
Save