make-tarball.nix: Don't check broken packages

They're broken after all. In particular, this prevents us from
evaluating packages that are unsupported on a particular platform.

Reverts a147ddc42c.

Fixes #20817.
This commit is contained in:
Eelco Dolstra 2016-11-30 15:21:30 +01:00
parent e3a873479e
commit c0da5f78d6
No known key found for this signature in database
GPG Key ID: 8170B4726D7198DE

View File

@ -66,7 +66,7 @@ releaseTools.sourceTarball rec {
for platform in i686-linux x86_64-linux x86_64-darwin; do
header "checking Nixpkgs on $platform"
NIXPKGS_ALLOW_BROKEN=1 nix-env -f . \
nix-env -f . \
--show-trace --argstr system "$platform" \
-qa --drv-path --system-filter \* --system 2>&1 >/dev/null | tee eval-warnings.log
@ -76,7 +76,7 @@ releaseTools.sourceTarball rec {
fi
rm eval-warnings.log
NIXPKGS_ALLOW_BROKEN=1 nix-env -f . \
nix-env -f . \
--show-trace --argstr system "$platform" \
-qa --drv-path --system-filter \* --system --meta --xml > /dev/null
stopNest