summary refs log tree commit diff
path: root/pkgs/development/compilers/swift
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2017-03-29 07:42:16 -0500
committerWill Dietz <w@wdtz.org>2017-03-29 07:42:16 -0500
commitbccc5ae82cef591b4f496bf58e1a104e448a9312 (patch)
tree441fb11d277986d749aca37300b2fb192696b7df /pkgs/development/compilers/swift
parent72bb7b399ad4a4d6105cfa17f692ea69c2628bee (diff)
downloadnixlib-bccc5ae82cef591b4f496bf58e1a104e448a9312.tar
nixlib-bccc5ae82cef591b4f496bf58e1a104e448a9312.tar.gz
nixlib-bccc5ae82cef591b4f496bf58e1a104e448a9312.tar.bz2
nixlib-bccc5ae82cef591b4f496bf58e1a104e448a9312.tar.lz
nixlib-bccc5ae82cef591b4f496bf58e1a104e448a9312.tar.xz
nixlib-bccc5ae82cef591b4f496bf58e1a104e448a9312.tar.zst
nixlib-bccc5ae82cef591b4f496bf58e1a104e448a9312.zip
swift: remove i686-linux from platforms, limit to x86-64-linux
Don't know that other platforms will fail but it seems likely
since we're using build profile intended for 64bit Ubuntu.
Diffstat (limited to 'pkgs/development/compilers/swift')
-rw-r--r--pkgs/development/compilers/swift/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/compilers/swift/default.nix b/pkgs/development/compilers/swift/default.nix
index da4482b463ec..9764ede7281c 100644
--- a/pkgs/development/compilers/swift/default.nix
+++ b/pkgs/development/compilers/swift/default.nix
@@ -258,7 +258,8 @@ stdenv.mkDerivation rec {
     homepage = "https://github.com/apple/swift";
     maintainers = with maintainers; [ jb55 dtzWill ];
     license = licenses.asl20;
-    platforms = platforms.linux;
+    # Swift doesn't support 32bit Linux, unknown on other platforms.
+    platforms = [ "x86_64-linux" ];
   };
 }