summary refs log tree commit diff
path: root/pkgs/applications/networking/mailreaders/notmuch
diff options
context:
space:
mode:
authorFelix Buehler <account@buehler.rocks>2021-07-14 16:34:25 +0200
committerFelix Buehler <account@buehler.rocks>2021-07-14 16:34:25 +0200
commit88feff5924db44c5d5cba6ab5cb4eeed277576bc (patch)
tree73346f8c60343903bf0c4923066bb2e4e5f1cdaa /pkgs/applications/networking/mailreaders/notmuch
parent9b4f7584f334a637e5c95f8f60d2256223ad5908 (diff)
notmuch-mutt: deprecate phases
Diffstat (limited to 'pkgs/applications/networking/mailreaders/notmuch')
-rw-r--r--pkgs/applications/networking/mailreaders/notmuch/mutt.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/networking/mailreaders/notmuch/mutt.nix b/pkgs/applications/networking/mailreaders/notmuch/mutt.nix
index 18264c5c6af48..ffd30c754b47e 100644
--- a/pkgs/applications/networking/mailreaders/notmuch/mutt.nix
+++ b/pkgs/applications/networking/mailreaders/notmuch/mutt.nix
@@ -24,7 +24,8 @@ stdenv.mkDerivation rec {
 
   src = notmuch.src;
 
-  phases = [ "unpackPhase" "installPhase" "fixupPhase" ];
+  dontConfigure = true;
+  dontBuild = true;
 
   installPhase = ''
     ${coreutils}/bin/install -Dm755 \
@@ -36,7 +37,6 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with lib; {
-    inherit version;
     description = "Mutt support for notmuch";
     homepage    = "https://notmuchmail.org/";
     license     = with licenses; gpl3;