From b58227a4c07e6e39dd8e191b8a8cd6c8ef28ff49 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Mon, 8 Jun 2020 17:46:28 +0300 Subject: [PATCH] neomutt: Remove old fixes for failing tests Includes both rfc2047 tests workarounds and locale workarounds. Fixes #86896. See https://github.com/neomutt/neomutt/pull/2314 . --- .../networking/mailreaders/neomutt/default.nix | 8 -------- 1 file changed, 8 deletions(-) diff --git a/pkgs/applications/networking/mailreaders/neomutt/default.nix b/pkgs/applications/networking/mailreaders/neomutt/default.nix index 0aa41e77e224..340d4cb3939f 100644 --- a/pkgs/applications/networking/mailreaders/neomutt/default.nix +++ b/pkgs/applications/networking/mailreaders/neomutt/default.nix @@ -42,12 +42,6 @@ stdenv.mkDerivation rec { # and use a far more comprehensive list than the one shipped with neomutt substituteInPlace sendlib.c \ --replace /etc/mime.types ${mailcap}/etc/mime.types - - # The string conversion tests all fail with the first version of neomutt - # that has tests (20180223) as well as 20180716 so we disable them for now. - # I don't know if that is related to the tests or our build environment. - # Try again with a later release. - sed -i '/rfc2047/d' test/Makefile.autosetup test/main.c ''; configureFlags = [ @@ -89,10 +83,8 @@ stdenv.mkDerivation rec { (cd test-files && ./setup.sh) export NEOMUTT_TEST_DIR=$(pwd)/test-files - export LC_ALL="en_US.UTF-8" ''; - checkInputs = [ glibcLocales ]; checkTarget = "test"; postCheck = "unset NEOMUTT_TEST_DIR";