nixpkgs/pkgs/tools/X11/xprintidle-ng/default.nix

45 lines
1.1 KiB
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchFromGitHub, libX11, libXScrnSaver, libXext, gnulib
, autoconf, automake, libtool, gettext, pkg-config
2015-12-12 10:47:00 +00:00
, git, perl, texinfo, help2man
}:
2015-12-12 10:47:00 +00:00
stdenv.mkDerivation rec {
pname = "xprintidle-ng";
2015-12-12 10:47:00 +00:00
version = "git-2015-09-01";
src = fetchFromGitHub {
owner = "taktoa";
repo = pname;
2015-12-12 10:47:00 +00:00
rev = "9083ba284d9222541ce7da8dc87d5a27ef5cc592";
sha256 = "0a5024vimpfrpj6w60j1ad8qvjkrmxiy8w1yijxfwk917ag9rkpq";
};
postPatch = ''
substituteInPlace configure.ac \
--replace "AC_PREREQ([2.62])" "AC_PREREQ([2.64])"
'';
2020-02-23 18:17:03 +00:00
nativeBuildInputs = [
autoconf automake gettext git gnulib
help2man libtool perl pkg-config texinfo
];
2015-12-12 10:47:00 +00:00
configurePhase = ''
2020-02-23 18:17:03 +00:00
./bootstrap --gnulib-srcdir=${gnulib}
2015-12-12 10:47:00 +00:00
./configure --prefix="$out"
'';
buildInputs = [
2020-02-23 18:17:03 +00:00
libX11 libXScrnSaver libXext
];
2015-12-12 10:47:00 +00:00
meta = {
inherit version;
description = "A command-line tool to print idle time from libXss";
homepage = "http://taktoa.me/xprintidle-ng/";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2;
maintainers = [lib.maintainers.raskin];
platforms = lib.platforms.linux;
2015-12-12 10:47:00 +00:00
};
}