Skip to content

Instantly share code, notes, and snippets.

@matthew-piziak
Created August 27, 2018 15:42
Show Gist options
  • Save matthew-piziak/0e7211fe2734fe87a64fa936216c41de to your computer and use it in GitHub Desktop.
Save matthew-piziak/0e7211fe2734fe87a64fa936216c41de to your computer and use it in GitHub Desktop.
{ pkgs, ... }:
let
emacs26 = pkgs.emacs.override{withXwidgets = true;}.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