2009-03-03 14:27:40 +01:00
|
|
|
{stdenv, fetchurl}:
|
2008-02-21 20:57:40 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2010-05-27 21:33:37 +02:00
|
|
|
name = "acpitool-0.5.1";
|
2009-03-03 14:27:40 +01:00
|
|
|
|
2008-02-21 20:57:40 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/acpitool/${name}.tar.bz2";
|
2010-05-27 21:33:37 +02:00
|
|
|
sha256 = "004fb6cd43102918b6302cf537a2db7ceadda04aef2e0906ddf230f820dad34f";
|
2008-02-21 20:57:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2009-03-03 14:27:40 +01:00
|
|
|
description = "A small, convenient command-line ACPI client with a lot of features";
|
2008-02-21 20:57:40 +01:00
|
|
|
homepage = http://freeunix.dyndns.org:8000/site2/acpitool.shtml;
|
|
|
|
license = "GPLv2+";
|
2010-05-27 21:33:37 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.guibert ];
|
2008-02-21 20:57:40 +01:00
|
|
|
};
|
|
|
|
}
|