2010-07-28 04:55:54 -07:00
|
|
|
{ stdenv, fetchurl }:
|
2008-02-21 12:13:36 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-01-14 02:34:19 -08:00
|
|
|
name = "acpi-${version}";
|
2013-11-20 10:46:07 -08:00
|
|
|
version = "1.7";
|
2013-01-14 02:34:19 -08:00
|
|
|
|
2008-02-21 12:13:36 -08:00
|
|
|
src = fetchurl {
|
2013-01-14 03:00:32 -08:00
|
|
|
url = "mirror://sourceforge/acpiclient/${version}/${name}.tar.gz";
|
2013-11-20 10:46:07 -08:00
|
|
|
sha256 = "01ahldvf0gc29dmbd5zi4rrnrw2i1ajnf30sx2vyaski3jv099fp";
|
2008-02-21 12:13:36 -08:00
|
|
|
};
|
|
|
|
|
2014-01-28 09:11:00 -08:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-05 07:22:46 -07:00
|
|
|
description = "Show battery status and other ACPI information";
|
2009-03-03 05:27:40 -08:00
|
|
|
longDescription = ''
|
|
|
|
Linux ACPI client is a small command-line
|
|
|
|
program that attempts to replicate the functionality of
|
|
|
|
the "old" `apm' command on ACPI systems. It includes
|
|
|
|
battery and thermal information.
|
|
|
|
'';
|
2017-08-02 14:50:51 -07:00
|
|
|
homepage = https://sourceforge.net/projects/acpiclient/;
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2014-01-28 09:11:00 -08:00
|
|
|
platforms = platforms.linux;
|
2018-01-16 21:13:23 -08:00
|
|
|
maintainers = [ ];
|
2008-02-21 12:13:36 -08:00
|
|
|
};
|
|
|
|
}
|