lol

Merge pull request #44060 from periklis/emacs-package-eval-fix

Fix pname to ename propagation if null

authored by

Thomas Tuegel and committed by
GitHub
3fd03165 1fe2a0f8

+6 -1
+6 -1
pkgs/build-support/emacs/melpa.nix
··· 13 13 /* 14 14 ename: Original Emacs package name, possibly containing special symbols. 15 15 */ 16 - , ename ? pname 16 + , ename ? null 17 17 , version 18 18 , recipe 19 19 , meta ? {} ··· 29 29 in 30 30 31 31 import ./generic.nix { inherit lib stdenv emacs texinfo; } ({ 32 + 33 + ename = 34 + if isNull(ename) 35 + then pname 36 + else ename; 32 37 33 38 melpa = fetchFromGitHub { 34 39 owner = "melpa";