about summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorjoachifm <joachifm@users.noreply.github.com>2016-03-11 16:10:16 +0000
committerjoachifm <joachifm@users.noreply.github.com>2016-03-11 16:10:16 +0000
commit7c73dc227bdc8c70b6744539881a10ad6d8fd697 (patch)
tree4708a54a98af6d761ca60f96e885ffa7264c4482 /pkgs/applications/editors
parentce6a1a6ceaee7496313bc6dd3f2325b43f65db64 (diff)
parentcbd4a203b7a85eb15992abdc28de05412598abf3 (diff)
downloadnixlib-7c73dc227bdc8c70b6744539881a10ad6d8fd697.tar
nixlib-7c73dc227bdc8c70b6744539881a10ad6d8fd697.tar.gz
nixlib-7c73dc227bdc8c70b6744539881a10ad6d8fd697.tar.bz2
nixlib-7c73dc227bdc8c70b6744539881a10ad6d8fd697.tar.lz
nixlib-7c73dc227bdc8c70b6744539881a10ad6d8fd697.tar.xz
nixlib-7c73dc227bdc8c70b6744539881a10ad6d8fd697.tar.zst
nixlib-7c73dc227bdc8c70b6744539881a10ad6d8fd697.zip
Merge pull request #13830 from Chattered/fix/emacs-w3m
emacs-w3m: fix reference to env variable
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/emacs-modes/emacs-w3m/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/emacs-modes/emacs-w3m/default.nix b/pkgs/applications/editors/emacs-modes/emacs-w3m/default.nix
index d72ab12b580d..850041ccfc77 100644
--- a/pkgs/applications/editors/emacs-modes/emacs-w3m/default.nix
+++ b/pkgs/applications/editors/emacs-modes/emacs-w3m/default.nix
@@ -27,8 +27,8 @@ stdenv.mkDerivation rec {
   '';
 
   configureFlags = [
-    "--with-lispdir=$out/share/emacs/site-lisp"
-    "--with-icondir=$out/share/emacs/site-lisp/images/w3m"
+    "--with-lispdir=$(out)/share/emacs/site-lisp"
+    "--with-icondir=$(out)/share/emacs/site-lisp/images/w3m"
   ];
 
   postInstall = ''