mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 20:21:14 +00:00
xprintidel-ng: init at git-2015-09-01
This commit is contained in:
parent
c29702d132
commit
154e88ab3f
36
pkgs/tools/X11/xprintidle-ng/default.nix
Normal file
36
pkgs/tools/X11/xprintidle-ng/default.nix
Normal file
|
@ -0,0 +1,36 @@
|
|||
{ stdenv, fetchFromGitHub, libX11, libXScrnSaver, libXext, gnulib
|
||||
, autoconf, automake, libtool, gettext, pkgconfig
|
||||
, git, perl, texinfo, help2man
|
||||
}:
|
||||
stdenv.mkDerivation rec {
|
||||
version = "git-2015-09-01";
|
||||
name = "${baseName}-${version}";
|
||||
baseName = "xprintidle-ng";
|
||||
|
||||
buildInputs = [
|
||||
libX11 libXScrnSaver libXext gnulib
|
||||
autoconf automake libtool gettext pkgconfig git perl
|
||||
texinfo help2man
|
||||
];
|
||||
src = fetchFromGitHub {
|
||||
owner = "taktoa";
|
||||
repo = "${baseName}";
|
||||
rev = "9083ba284d9222541ce7da8dc87d5a27ef5cc592";
|
||||
sha256 = "0a5024vimpfrpj6w60j1ad8qvjkrmxiy8w1yijxfwk917ag9rkpq";
|
||||
};
|
||||
|
||||
configurePhase = ''
|
||||
cp -r "${gnulib}" gnulib
|
||||
chmod a+rX,u+w -R gnulib
|
||||
./bootstrap --gnulib-srcdir=gnulib
|
||||
./configure --prefix="$out"
|
||||
'';
|
||||
|
||||
meta = {
|
||||
inherit version;
|
||||
description = ''A command-line tool to print idle time from libXss'';
|
||||
license = stdenv.lib.licenses.gpl2 ;
|
||||
maintainers = [stdenv.lib.maintainers.raskin];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
|
@ -3495,6 +3495,8 @@ let
|
|||
|
||||
xbrightness = callPackage ../tools/X11/xbrightness { };
|
||||
|
||||
xprintidle-ng = callPackage ../tools/X11/xprintidle-ng {};
|
||||
|
||||
xsettingsd = callPackage ../tools/X11/xsettingsd { };
|
||||
|
||||
xsensors = callPackage ../os-specific/linux/xsensors { };
|
||||
|
|
Loading…
Reference in a new issue