* Cleaned up a lot of description fields that contained newlines.
Some of these should be longDescriptions, but most others just
shouldn't contain newlines. E.g. write
description = "Bla";
and not
description = ''
Bla
'';
This pollutes "nix-env -qa --description" output.
svn path=/nixpkgs/trunk/; revision=14310
This commit is contained in:
@@ -9,10 +9,12 @@ stdenv.mkDerivation rec {
|
||||
|
||||
|
||||
meta = {
|
||||
description = ''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.'';
|
||||
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+";
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user