about summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders/notmuch
diff options
context:
space:
mode:
authorMatthew Justin Bauer <mjbauer95@gmail.com>2018-04-08 23:07:35 -0500
committerGitHub <noreply@github.com>2018-04-08 23:07:35 -0500
commitc472940c8bf9e8e1358d040f699565f962d77778 (patch)
tree5900562d34f3410f2aac82d11b0337d6541c99db /pkgs/applications/networking/mailreaders/notmuch
parentaaee915889edbe8395e3a0ce408bb58e7b8c4355 (diff)
parentd97416198a035ed983e8195bca0493f6eee3f8ae (diff)
downloadnixlib-c472940c8bf9e8e1358d040f699565f962d77778.tar
nixlib-c472940c8bf9e8e1358d040f699565f962d77778.tar.gz
nixlib-c472940c8bf9e8e1358d040f699565f962d77778.tar.bz2
nixlib-c472940c8bf9e8e1358d040f699565f962d77778.tar.lz
nixlib-c472940c8bf9e8e1358d040f699565f962d77778.tar.xz
nixlib-c472940c8bf9e8e1358d040f699565f962d77778.tar.zst
nixlib-c472940c8bf9e8e1358d040f699565f962d77778.zip
Merge pull request #37383 from hedning/notmuch-fix-/bin/sh
notmuch: fix /bin/sh impurity in ./configure
Diffstat (limited to 'pkgs/applications/networking/mailreaders/notmuch')
-rw-r--r--pkgs/applications/networking/mailreaders/notmuch/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/networking/mailreaders/notmuch/default.nix b/pkgs/applications/networking/mailreaders/notmuch/default.nix
index 20e8071b1211..d89219cce5f3 100644
--- a/pkgs/applications/networking/mailreaders/notmuch/default.nix
+++ b/pkgs/applications/networking/mailreaders/notmuch/default.nix
@@ -40,6 +40,8 @@ stdenv.mkDerivation rec {
   ++ optionals (!stdenv.isDarwin) [ gdb man ]; # test dependencies
 
   postPatch = ''
+    patchShebangs configure
+
     find test/ -type f -exec \
       sed -i \
         -e "1s|#!/usr/bin/env bash|#!${bash}/bin/bash|" \