Skip to content

Commit

Permalink
delete all uses of removed lib.mdDoc
Browse files Browse the repository at this point in the history
  • Loading branch information
Cooper Dumars authored and mergify[bot] committed Jan 1, 2025
1 parent 6788ee5 commit 5f12c69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/nix-ld.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,18 @@ in

options.programs.nix-ld.dev = {
enable =
lib.mkEnableOption (lib.mdDoc ''nix-ld, Documentation: <https://github.com/Mic92/nix-ld>'')
lib.mkEnableOption (''nix-ld, Documentation: <https://github.com/Mic92/nix-ld>'')
// {
default = true;
};
package = lib.mkOption {
type = lib.types.package;
description = lib.mdDoc "The package to be used for nix-ld.";
description = "The package to be used for nix-ld.";
default = pkgs.callPackage ../package.nix { };
};
libraries = lib.mkOption {
type = lib.types.listOf lib.types.package;
description = lib.mdDoc "Libraries that automatically become available to all programs. The default set includes common libraries.";
description = "Libraries that automatically become available to all programs. The default set includes common libraries.";
default = baseLibraries;
defaultText = lib.literalExpression "baseLibraries derived from systemd and nix dependencies.";
};
Expand Down

0 comments on commit 5f12c69

Please sign in to comment.