nextpnr: restrict to Linux only

a5ac052dd3 changed the platforms for
nextpnr from 'linux' to 'all', but unfortunately nextpnr has not been
building anyway due to a missing OpenGL dependency.[1][2]

Restrict back to Linux for now. When a build fix happens, we can open it
up again.

  [1] https://hydra.nixos.org/build/99106360
  [1] https://hydra.nixos.org/eval/1538169

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2019-09-01 14:24:00 -05:00
parent f9333358e1
commit ea34c61c0f
No known key found for this signature in database
GPG key ID: 25D2038DEB08021D

View file

@ -61,7 +61,7 @@ with stdenv; mkDerivation rec {
description = "Place and route tool for FPGAs";
homepage = https://github.com/yosyshq/nextpnr;
license = licenses.isc;
platforms = platforms.all;
platforms = platforms.linux;
maintainers = with maintainers; [ thoughtpolice emily ];
};
}