nixpkgs/pkgs/tools/X11/xprintidle/default.nix
2024-07-04 08:04:43 +00:00

42 lines
808 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, meson
, ninja
, pkg-config
, xorg
}:
stdenv.mkDerivation (finalAttrs: {
pname = "xprintidle";
version = "0.3.0";
src = fetchFromGitHub {
owner = "g0hl1n";
repo = "xprintidle";
rev = finalAttrs.version;
sha256 = "sha256-MawkT4RconRDDCNnaWMxU18lK34ywcebbiHlYeZn/lc=";
};
nativeBuildInputs = [
meson
ninja
pkg-config
];
buildInputs = [
xorg.libXScrnSaver
xorg.libX11
xorg.libXext
];
meta = with lib; {
homepage = "https://github.com/g0hl1n/xprintidle";
description = "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;
mainProgram = "xprintidle";
};
})