nixpkgs/pkgs/os-specific/linux/acpi/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

26 lines
770 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "acpi";
version = "1.7";
src = fetchurl {
url = "mirror://sourceforge/acpiclient/${version}/${pname}-${version}.tar.gz";
sha256 = "01ahldvf0gc29dmbd5zi4rrnrw2i1ajnf30sx2vyaski3jv099fp";
};
meta = with stdenv.lib; {
description = "Show battery status and other ACPI information";
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 = https://sourceforge.net/projects/acpiclient/;
license = stdenv.lib.licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ ];
};
}