Merge pull request #6994 from oxij/trivial-package-fixes
Trivial package fixes
This commit is contained in:
commit
883ee4dd72
|
@ -18,14 +18,15 @@ 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
|
||||
-i driver/Makefile.in po/Makefile.in.in
|
||||
'';
|
||||
|
||||
configureFlags =
|
||||
|
|
|
@ -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; };
|
||||
};
|
||||
|
|
|
@ -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 ];
|
||||
|
||||
|
|
Loading…
Reference in New Issue