Skip to content

Instantly share code, notes, and snippets.

@matthew-piziak
Created August 27, 2018 15:27
Show Gist options
  • Save matthew-piziak/f7e5ce877ee13f2c0532a7f4a69ff8f0 to your computer and use it in GitHub Desktop.
Save matthew-piziak/f7e5ce877ee13f2c0532a7f4a69ff8f0 to your computer and use it in GitHub Desktop.
emacs 26 with xwidget (doesn't work)
{ pkgs, ... }:
let
emacs26 = pkgs.stdenv.lib.overrideDerivation pkgs.emacs (oldAttrs : {
version = "26.1RC1";
src = pkgs.fetchurl {
url = ftp://alpha.gnu.org/gnu/emacs/pretest/emacs-26.1-rc1.tar.xz;
sha256 = "6594e668de00b96e73ad4f168c897fe4bca7c55a4caf19ee20eac54b62a05758";
};
patches = [];
withXwidgetsx = true;
});
in
{
environment.systemPackages = [
emacs26
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment