Merge pull request #9279 from oxij/haskell-related-emacs

Somewhat trivial Haskell-, Agda-, and emacs-related fixes
This commit is contained in:
Peter Simons 2015-08-16 21:02:17 +02:00
commit bc3b49ea6f
2 changed files with 3 additions and 4 deletions

View File

@ -8514,7 +8514,7 @@ let
agda = callPackage ../build-support/agda {
glibcLocales = if pkgs.stdenv.isLinux then pkgs.glibcLocales else null;
extension = self : super : { };
inherit (haskell.packages.ghc784) Agda;
inherit (haskellPackages) Agda;
inherit writeScriptBin;
};
@ -11289,9 +11289,7 @@ let
};
external = {
# FIXME: revert when Agda and ghc-mod are fixed on 7.10
inherit (haskell.packages.ghc784) ghc-mod Agda;
inherit (haskellPackages) structured-haskell-mode;
inherit (haskellPackages) ghc-mod structured-haskell-mode Agda;
};
};

View File

@ -597,6 +597,7 @@ let self = _self // overrides;
pname = "ghc";
version = external.ghc-mod.version;
src = external.ghc-mod.src;
packageRequires = [ haskell-mode ];
propagatedUserEnvPkgs = [ external.ghc-mod ];
fileSpecs = [ "elisp/*.el" ];
meta = { license = bsd3; };