From 765ceb93d1b75401b9b85da00a36c58864a3fb27 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Fri, 30 May 2025 23:22:21 -0500 Subject: [PATCH] lib: remove literalExpression and literalDocBook logic 3 years old, not needed anymore. Signed-off-by: Austin Horstman --- modules/lib/stdlib-extended.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/modules/lib/stdlib-extended.nix b/modules/lib/stdlib-extended.nix index 143ddc56..6e8eee5e 100644 --- a/modules/lib/stdlib-extended.nix +++ b/modules/lib/stdlib-extended.nix @@ -9,9 +9,5 @@ in nixpkgsLib.extend ( self: super: { hm = mkHmLib { lib = self; }; - - # For forward compatibility. - literalExpression = super.literalExpression or super.literalExample; - literalDocBook = super.literalDocBook or super.literalExample; } )