nix: Use node 8 for node packages
Alan Pearce alan@alanpearce.eu
Wed, 05 Jul 2017 13:33:58 +0200
1 files changed, 4 insertions(+), 1 deletions(-)
M nix/.config/nixpkgs/config.nix → nix/.config/nixpkgs/config.nix
@@ -2,7 +2,10 @@ { pkgs }: { packageOverrides = super: let self = super.pkgs; in with self; rec { - myEmacs = super.callPackage ./emacs.nix {}; + myEmacs = super.callPackage ./emacs.nix { + emacs = if stdenv.isDarwin then emacs25Macport else emacs; + }; + nodejs = pkgs.nodejs-8_x; }; allowUnfree = true;