From e370a45a502ecfe80e9e19c618eaae418e574705 Mon Sep 17 00:00:00 2001 From: Robert Hensing Date: Wed, 4 Dec 2024 10:22:35 +0100 Subject: [PATCH] maint: Remove mdDoc call It has been removed upstream in Nixpkgs. This fixes documentation rendering with the latest Nixpkgs. --- nix/flake-module.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nix/flake-module.nix b/nix/flake-module.nix index 36dcd70..452f1f8 100644 --- a/nix/flake-module.nix +++ b/nix/flake-module.nix @@ -3,7 +3,6 @@ let inherit (flake-parts-lib) mkPerSystemOption; inherit (lib) - mdDoc mkOption types; in @@ -11,7 +10,7 @@ in options.perSystem = mkPerSystemOption ({ config, pkgs, lib, ... }: { options.process-compose = mkOption { - description = mdDoc '' + description = '' process-compose-flake: creates [process-compose](https://github.com/F1bonacc1/process-compose) executables from process-compose configurations written as Nix attribute sets. '';