Skip to content

Commit

Permalink
Minor meta.description/meta.longDescription cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Rhys-T committed Nov 4, 2024
1 parent e603f6d commit dbcbfa7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ in {
substituteInPlace build.go --replace-fail '[]string{"build"}' '[]string{"build", "-L"}'
'';
meta = old.meta // {
description = "${old.meta.description} (logs build output)";
description = "${old.meta.description} (variant that logs build output)";
};
})) {};

Expand Down
2 changes: 1 addition & 1 deletion pkgs/bubbros/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ in stdenv.mkDerivation (finalAttrs: let self = finalAttrs.finalPackage; in {
runHook postInstall
'';
meta = {
description = "multiplayer clone of the famous Bubble Bobble game";
description = "Multiplayer clone of the famous Bubble Bobble game";
longDescription = ''
The objective of this game is to obtain points by destroying enemies
(capturing them into bubbles and smashing those) and collecting items.
Expand Down
5 changes: 4 additions & 1 deletion pkgs/hfsutils/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@ stdenv.mkDerivation rec {
'';

meta = {
description = "HFS utilities";
description = "Tools for reading and writing Macintosh HFS volumes";
longDescription = ''
HFS is the "Hierarchical File System," the native volume format used on modern Macintosh computers. `hfsutils` is the name of a comprehensive software package being developed to permit manipulation of HFS volumes from UNIX and other systems.
'';
# maintainers = with maintainers; [ dtzWill ];
maintainers = [maintainers.Rhys-T];
license = lib.licenses.gpl2Plus;
Expand Down

0 comments on commit dbcbfa7

Please sign in to comment.