Commit c86a47bb authored by Alexis Hildebrandt's avatar Alexis Hildebrandt
Browse files

neomutt: format with nixfmt

parent 3ba85eae
Loading
Loading
Loading
Loading
+18 −19
Original line number Diff line number Diff line
@@ -35,7 +35,9 @@
  withContrib ? true,
}:

assert lib.warnIf (enableMixmaster) "Support for mixmaster has been removed from neomutt since the 20241002 release" true;
assert lib.warnIf (
  enableMixmaster
) "Support for mixmaster has been removed from neomutt since the 20241002 release" true;

stdenv.mkDerivation (finalAttrs: {
  pname = "neomutt";
@@ -97,8 +99,7 @@ stdenv.mkDerivation (finalAttrs: {
      --replace /etc/mime.types ${mailcap}/etc/mime.types
  '';

  configureFlags =
    [
  configureFlags = [
    "--enable-autocrypt"
    "--gpgme"
    "--gss"
@@ -112,9 +113,7 @@ stdenv.mkDerivation (finalAttrs: {
    # https://github.com/neomutt/neomutt/pull/2367
    "--disable-include-path-in-cflags"
    "--zlib"
    ]
    ++ lib.optional enableZstd "--zstd"
    ++ lib.optional enableLua "--lua";
  ] ++ lib.optional enableZstd "--zstd" ++ lib.optional enableLua "--lua";

  postInstall =
    ''