1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00

notmuch-mutt: deprecate phases

This commit is contained in:
Felix Buehler 2021-07-14 16:34:25 +02:00
parent 9b4f7584f3
commit 88feff5924

View file

@ -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;