viber: Mark as broken

It doesn't evaluate due to Qt changes. Also improve checking in
make-tarball.nix to catch this in the future.
This commit is contained in:
Eelco Dolstra 2015-05-12 14:29:16 +02:00
parent 9837288a11
commit 1ba5ef6b6a
2 changed files with 5 additions and 1 deletions

View file

@ -63,6 +63,7 @@ stdenv.mkDerivation rec {
license = stdenv.lib.licenses.unfree;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ jagajaga ];
broken = true;
};
}

View file

@ -54,7 +54,10 @@ releaseTools.sourceTarball rec {
header "checking pkgs/top-level/all-packages.nix on $platform"
NIXPKGS_ALLOW_BROKEN=1 nix-env -f pkgs/top-level/all-packages.nix \
--show-trace --argstr system "$platform" \
-qa \* --drv-path --system-filter \* --system --meta --xml > /dev/null
-qa --drv-path --system-filter \* --system > /dev/null
NIXPKGS_ALLOW_BROKEN=1 nix-env -f pkgs/top-level/all-packages.nix \
--show-trace --argstr system "$platform" \
-qa --drv-path --system-filter \* --system --meta --xml > /dev/null
stopNest
done