summary refs log tree commit diff
path: root/pkgs/os-specific/linux/acpitool/default.nix
blob: c7f96206eab458b5ed0b274eec7410b720d01b55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{stdenv, fetchurl}:

stdenv.mkDerivation rec {
  name = "acpitool-0.5.1";
  
  src = fetchurl {
    url = "mirror://sourceforge/acpitool/${name}.tar.bz2";
    sha256 = "004fb6cd43102918b6302cf537a2db7ceadda04aef2e0906ddf230f820dad34f";
  };

  meta = {
    description = "A small, convenient command-line ACPI client with a lot of features";
    homepage = http://freeunix.dyndns.org:8000/site2/acpitool.shtml;
    license = "GPLv2+";
    maintainers = [ stdenv.lib.maintainers.guibert ];
  };
}