about summary refs log tree commit diff
path: root/pkgs/top-level/make-tarball.nix
diff options
context:
space:
mode:
authorEelco Dolstra <edolstra@gmail.com>2016-11-30 15:14:30 +0100
committerEelco Dolstra <edolstra@gmail.com>2016-11-30 15:14:30 +0100
commite3a873479eee4e19a852011d45b0fb653f6c9e89 (patch)
treeec4b0a04175ec3b76329074c18182230a3ca7074 /pkgs/top-level/make-tarball.nix
parentf26ff0b1bdd6875548edea50efd69698f791ae50 (diff)
Remove fetchMD5warn
Deprecation warnings should not be used in Nixpkgs because they spam
innocent "nix-env -qa" users with (in this case) dozens of messages
that they can't do anything about.

This also reverts commit 2ca883338389b7ab995924a0cab0211993bdf1da.
Diffstat (limited to 'pkgs/top-level/make-tarball.nix')
-rw-r--r--pkgs/top-level/make-tarball.nix5
1 files changed, 1 insertions, 4 deletions
diff --git a/pkgs/top-level/make-tarball.nix b/pkgs/top-level/make-tarball.nix
index 8b3b67f4b05e5..2fe69390ec5ba 100644
--- a/pkgs/top-level/make-tarball.nix
+++ b/pkgs/top-level/make-tarball.nix
@@ -63,15 +63,12 @@ releaseTools.sourceTarball rec {
     fi
 
     # Check that all-packages.nix evaluates on a number of platforms without any warnings.
-    # Filter out MD5 warnings for now
     for platform in i686-linux x86_64-linux x86_64-darwin; do
         header "checking Nixpkgs on $platform"
 
         NIXPKGS_ALLOW_BROKEN=1 nix-env -f . \
             --show-trace --argstr system "$platform" \
-            -qa --drv-path --system-filter \* --system 2>&1 >/dev/null |
-            (grep -v '^trace: INFO: Deprecated use of MD5 hash in fetch' || true) |
-            tee eval-warnings.log
+            -qa --drv-path --system-filter \* --system 2>&1 >/dev/null | tee eval-warnings.log
 
         if [ -s eval-warnings.log ]; then
             echo "Nixpkgs on $platform evaluated with warnings, aborting"