Merge pull request #6994 from oxij/trivial-package-fixes

Trivial package fixes
This commit is contained in:
Domen Kožar 2015-03-27 11:09:16 +01:00
commit 883ee4dd72
3 changed files with 6 additions and 4 deletions

View File

@ -18,12 +18,13 @@ stdenv.mkDerivation rec {
libXxf86misc intltool
];
patchPhase =
preConfigure =
''
# Fix build error in version 5.18. Remove this patch when updating
# to a later version.
#sed -i -e '/AF_LINK/d' hacks/glx/sonar-icmp.c
# Fix path to GTK.
# Fix installation paths for GTK resources.
sed -e 's%@GTK_DATADIR@%@datadir@% ; s%@PO_DATADIR@%@datadir@%' \
-i driver/Makefile.in po/Makefile.in.in
'';

View File

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

View File

@ -6902,7 +6902,7 @@ let
src = pkgs.notmuch.src;
sourceRoot = "${pkgs.notmuch.name}/bindings/python";
sourceRoot = "${pkgs.notmuch.src.name}/bindings/python";
buildInputs = with self; [ python pkgs.notmuch ];