summary refs log tree commit diff
path: root/pkgs/applications/networking
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2018-04-06 19:20:03 +0200
committerMichael Weiss <dev.primeos@gmail.com>2018-04-06 19:37:46 +0200
commit80faa73fc064a946ad5ca9e702eb68922759b684 (patch)
treeabaaab1bc415db4fe59d2efb38fee38d4c389eb9 /pkgs/applications/networking
parent15a2dca15c25279843374003c8ae553e3b4af385 (diff)
downloadnixpkgs-80faa73fc064a946ad5ca9e702eb68922759b684.tar
nixpkgs-80faa73fc064a946ad5ca9e702eb68922759b684.tar.gz
nixpkgs-80faa73fc064a946ad5ca9e702eb68922759b684.tar.bz2
nixpkgs-80faa73fc064a946ad5ca9e702eb68922759b684.tar.lz
nixpkgs-80faa73fc064a946ad5ca9e702eb68922759b684.tar.xz
nixpkgs-80faa73fc064a946ad5ca9e702eb68922759b684.tar.zst
nixpkgs-80faa73fc064a946ad5ca9e702eb68922759b684.zip
neomutt: Fix the path to the auxiliary tools
This path changed from $out/lib/neomutt to $out/libexec/neomutt.
Diffstat (limited to 'pkgs/applications/networking')
-rw-r--r--pkgs/applications/networking/mailreaders/neomutt/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/networking/mailreaders/neomutt/default.nix b/pkgs/applications/networking/mailreaders/neomutt/default.nix
index d9c2a136adf..7bd0ea70dc6 100644
--- a/pkgs/applications/networking/mailreaders/neomutt/default.nix
+++ b/pkgs/applications/networking/mailreaders/neomutt/default.nix
@@ -79,7 +79,7 @@ in stdenv.mkDerivation rec {
 
   postInstall = ''
     cp ${muttWrapper} $out/bin/mutt
-    wrapProgram "$out/bin/neomutt" --prefix PATH : "$out/lib/neomutt"
+    wrapProgram "$out/bin/neomutt" --prefix PATH : "$out/libexec/neomutt"
   '';
 
   doCheck = true;