lib: add fallback for literalExpression and literalDocBook

This commit is contained in:
Naïm Favier 2021-10-09 11:12:40 +02:00 committed by Robert Helgesson
parent a77a01d1f6
commit 468c461139
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
1 changed files with 7 additions and 1 deletions

View File

@ -4,4 +4,10 @@
nixpkgsLib:
let mkHmLib = import ./.;
in nixpkgsLib.extend (self: super: { hm = mkHmLib { lib = super; }; })
in nixpkgsLib.extend (self: super: {
hm = mkHmLib { lib = self; };
# For forward compatibility.
literalExpression = super.literalExpression or super.literalExample;
literalDocBook = super.literalDocBook or super.literalExample;
})