Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1765,10 +1765,9 @@ let
workgroups2 = ignoreCompilationError super.workgroups2; # elisp error

ws-butler = super.ws-butler.overrideAttrs (old: {
# work around https://github.com/NixOS/nixpkgs/issues/436534
src = pkgs.fetchFromSavannah {
repo = "emacs/nongnu";
inherit (old.src) rev outputHash outputHashAlgo;
# TODO: Remove override when URL was updated in MELPA.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ideally we should put the MELPA PR in this comment. But it will be removed in the next elisp bump so not a big deal.

src = old.src.override {
url = "https://https.git.savannah.gnu.org/git/elpa/nongnu.git";
};
});

Expand Down
Loading