summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorMathijs Kwik <mathijs@bluescreen303.nl>2013-10-02 13:54:23 +0200
committerMathijs Kwik <mathijs@bluescreen303.nl>2013-10-04 09:07:45 +0200
commit4d32a074a23741793552d8c329fbecf10ebe1da0 (patch)
tree3fb45aa87686a10c0df3e54f0f030c6520357714 /pkgs/applications/editors
parentcb537ad44b940000653c4f36b3a68578a6a66980 (diff)
downloadnixlib-4d32a074a23741793552d8c329fbecf10ebe1da0.tar
nixlib-4d32a074a23741793552d8c329fbecf10ebe1da0.tar.gz
nixlib-4d32a074a23741793552d8c329fbecf10ebe1da0.tar.bz2
nixlib-4d32a074a23741793552d8c329fbecf10ebe1da0.tar.lz
nixlib-4d32a074a23741793552d8c329fbecf10ebe1da0.tar.xz
nixlib-4d32a074a23741793552d8c329fbecf10ebe1da0.tar.zst
nixlib-4d32a074a23741793552d8c329fbecf10ebe1da0.zip
org-mode: install to proper dir
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/emacs-modes/org/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/editors/emacs-modes/org/default.nix b/pkgs/applications/editors/emacs-modes/org/default.nix
index df78be6adacc..ad2bd2f0ba6a 100644
--- a/pkgs/applications/editors/emacs-modes/org/default.nix
+++ b/pkgs/applications/editors/emacs-modes/org/default.nix
@@ -2,7 +2,7 @@
 
 stdenv.mkDerivation rec {
   name = "org-8.2.1";
-  
+
   src = fetchurl {
     url = "http://orgmode.org/${name}.tar.gz";
     sha256 = "625e2b6786158bcf6c43194075f7638ab8048c68a60025289a051c407e467823";
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
 
   configurePhase =
     '' sed -i mk/default.mk \
-           -e "s|^prefix\t=.*$|prefix=$out|g"
+           -e "s|^prefix\t=.*$|prefix=$out/share|g"
     '';
 
   postBuild =