2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2008-02-21 12:13:36 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "acpi";
|
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 {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "mirror://sourceforge/acpiclient/${version}/${pname}-${version}.tar.gz";
|
2013-11-20 10:46:07 -08:00
|
|
|
sha256 = "01ahldvf0gc29dmbd5zi4rrnrw2i1ajnf30sx2vyaski3jv099fp";
|
2008-02-21 12:13:36 -08:00
|
|
|
};
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with 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.
|
|
|
|
'';
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://sourceforge.net/projects/acpiclient/";
|
2021-01-15 06:45:37 -08:00
|
|
|
license = 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
|
|
|
};
|
|
|
|
}
|