pkgs/development/compilers/ghc/with-packages.nix: include share/emacs/site-lisp in the generated environment
This change allows 'ghc-mod' to be included in such a GHC environment, which is important because the tool is GHC version-specific.
This commit is contained in:
parent
eacb6c1506
commit
893c684e99
@ -60,17 +60,22 @@ stdenv.mkDerivation rec {
|
|||||||
echo -n .
|
echo -n .
|
||||||
done
|
done
|
||||||
for f in "$currentPath/etc/bash_completion.d/"*; do
|
for f in "$currentPath/etc/bash_completion.d/"*; do
|
||||||
mkdir -p $out/etc/bash_completion.d
|
mkdir -p $out/etc/bash_completion.d
|
||||||
ln -s $f $out/etc/bash_completion.d/
|
ln -s $f $out/etc/bash_completion.d/
|
||||||
echo -n .
|
echo -n .
|
||||||
done
|
done
|
||||||
for s in 1 2 3 4 5 6 7 8 9; do
|
for s in 1 2 3 4 5 6 7 8 9; do
|
||||||
for f in "$currentPath/share/man/man$s/"*; do
|
for f in "$currentPath/share/man/man$s/"*; do
|
||||||
mkdir -p $out/share/man/man$s
|
mkdir -p $out/share/man/man$s
|
||||||
ln -sv $f $out/share/man/man$s/
|
ln -sv $f $out/share/man/man$s/
|
||||||
echo -n .
|
echo -n .
|
||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
for f in "$currentPath/share/emacs/site-lisp/"*; do
|
||||||
|
mkdir -p $out/share/emacs/site-lisp
|
||||||
|
ln -s $f $out/share/emacs/site-lisp/
|
||||||
|
echo -n .
|
||||||
|
done
|
||||||
for f in "$currentPkgDir/"*.conf; do
|
for f in "$currentPkgDir/"*.conf; do
|
||||||
ln -s $f $linkedPkgDir
|
ln -s $f $linkedPkgDir
|
||||||
echo -n .
|
echo -n .
|
||||||
|
Loading…
Reference in New Issue
Block a user