Skip to content

Instantly share code, notes, and snippets.

@matthew-piziak
Created August 27, 2018 20:58
Show Gist options
  • Save matthew-piziak/064cd5b42b2a3260541390a1bd993f43 to your computer and use it in GitHub Desktop.
Save matthew-piziak/064cd5b42b2a3260541390a1bd993f43 to your computer and use it in GitHub Desktop.
{ config, pkgs, ... }:
let
emacs26 = (pkgs.emacs.override{withXwidgets = true; webkitgtk24x-gtk3 = pkgs.webkitgtk; }).overrideAttrs (oldAttrs: {
version = "26.1RC1";
src = pkgs.fetchurl {
url = ftp://alpha.gnu.org/gnu/emacs/pretest/emacs-26.1-rc1.tar.xz;
sha256 = "6594e668de00b96e73ad4f168c897fe4bca7c55a4caf19ee20eac54b62a05758";
};
patches = [];
}
);
in
{
environment.systemPackages = [
emacs26
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment