depot/pkgs/os-specific/linux/acpi/default.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

26 lines
789 B
Nix

{ lib, 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 lib; {
description = "Show battery status and other ACPI information";
mainProgram = "acpi";
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 = lib.licenses.gpl2Plus;
platforms = platforms.linux;
maintainers = [ ];
};
}