Skip to content

Commit

Permalink
Merge pull request #323868 from philiptaron/__attrsFailEvaluation/ema…
Browse files Browse the repository at this point in the history
…csPackages

emacsPackages: remove __attrsFailEvaluation
  • Loading branch information
jian-lin authored Jul 16, 2024
2 parents c0e4367 + 882e48e commit b62b159
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,4 @@ self: let

in elpaDevelPackages // { inherit elpaBuild; });

in (generateElpa { }) // { __attrsFailEvaluation = true; }
in generateElpa { }
Original file line number Diff line number Diff line change
Expand Up @@ -210,4 +210,5 @@ self: let

in elpaPackages // { inherit elpaBuild; });

in (generateElpa { }) // { __attrsFailEvaluation = true; }
in
generateElpa { }
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,4 @@ in
emacsSessionManagement = self.session-management-for-emacs;
rectMark = self.rect-mark;
sunriseCommander = self.sunrise-commander;

__attrsFailEvaluation = true;
}
Original file line number Diff line number Diff line change
Expand Up @@ -755,5 +755,4 @@ let
in lib.mapAttrs (n: v: if lib.hasAttr n overrides then overrides.${n} else v) super);

in
(generateMelpa { })
// { __attrsFailEvaluation = true; }
generateMelpa { }
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ self: let
generated ? ./nongnu-generated.nix
}: let

imported = (import generated {
imported = import generated {
callPackage = pkgs: args: self.callPackage pkgs (args // {
# Use custom elpa url fetcher with fallback/uncompress
fetchurl = buildPackages.callPackage ./fetchelpa.nix { };
});
}) // { __attrsFailEvaluation = true; };
};

super = imported;

Expand Down

0 comments on commit b62b159

Please sign in to comment.