summary refs log tree commit diff
path: root/pkgs/os-specific/linux/acpi/default.nix
blob: 84ee4486807948cac8f32e33c7bd191869d83ff6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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+";
  };
}