nixpkgs/pkgs/os-specific/linux/acpi/default.nix
David Guibert 05d5478c9b acpi: 0.09 -> 1.5 (picked from debian)
svn path=/nixpkgs/trunk/; revision=26105
2011-02-24 22:19:27 +00:00

22 lines
591 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "acpi-1.5";
src = fetchurl {
url = "http://ftp.de.debian.org/debian/pool/main/a/acpi/acpi_1.5.orig.tar.gz";
sha256 = "1pb020j627ldjm1askqfzp6cjxrs79ail8svihanv7pgbg5r3zsp";
};
meta = {
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.
'';
homepage = http://grahame.angrygoats.net/acpi.shtml;
license = "GPLv2+";
};
}