summary refs log tree commit diff
path: root/pkgs/development/compilers/nextpnr
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2019-09-01 14:24:00 -0500
committerAustin Seipp <aseipp@pobox.com>2019-09-01 14:24:31 -0500
commitea34c61c0f1e8541de506ce627816c02c066a3f8 (patch)
tree3046e189e0ac4dd400f4257fd4da54a799505ff9 /pkgs/development/compilers/nextpnr
parentf9333358e12e4fae3d531d752970afd0e835a0ec (diff)
downloadnixpkgs-ea34c61c0f1e8541de506ce627816c02c066a3f8.tar
nixpkgs-ea34c61c0f1e8541de506ce627816c02c066a3f8.tar.gz
nixpkgs-ea34c61c0f1e8541de506ce627816c02c066a3f8.tar.bz2
nixpkgs-ea34c61c0f1e8541de506ce627816c02c066a3f8.tar.lz
nixpkgs-ea34c61c0f1e8541de506ce627816c02c066a3f8.tar.xz
nixpkgs-ea34c61c0f1e8541de506ce627816c02c066a3f8.tar.zst
nixpkgs-ea34c61c0f1e8541de506ce627816c02c066a3f8.zip
nextpnr: restrict to Linux only
a5ac052dd310e3adf558b2960e4e206b22211020 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>
Diffstat (limited to 'pkgs/development/compilers/nextpnr')
-rw-r--r--pkgs/development/compilers/nextpnr/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/nextpnr/default.nix b/pkgs/development/compilers/nextpnr/default.nix
index 52673e61996..894ef8c45fa 100644
--- a/pkgs/development/compilers/nextpnr/default.nix
+++ b/pkgs/development/compilers/nextpnr/default.nix
@@ -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 ];
   };
 }