summary refs log tree commit diff
path: root/pkgs/development/libraries/boost/generic.nix
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2017-03-10 20:06:03 +0200
committerTuomas Tynkkynen <tuomas@tuxera.com>2017-03-10 20:06:34 +0200
commit2b450377bf6e51cce0d831a88e74d5f61811b74d (patch)
treecca2d2ea63a6039aa4d49b71b09b8a600ed05354 /pkgs/development/libraries/boost/generic.nix
parentbb6361b81a1177a829fdcfb54e008840a87a17e6 (diff)
downloadnixpkgs-2b450377bf6e51cce0d831a88e74d5f61811b74d.tar
nixpkgs-2b450377bf6e51cce0d831a88e74d5f61811b74d.tar.gz
nixpkgs-2b450377bf6e51cce0d831a88e74d5f61811b74d.tar.bz2
nixpkgs-2b450377bf6e51cce0d831a88e74d5f61811b74d.tar.lz
nixpkgs-2b450377bf6e51cce0d831a88e74d5f61811b74d.tar.xz
nixpkgs-2b450377bf6e51cce0d831a88e74d5f61811b74d.tar.zst
nixpkgs-2b450377bf6e51cce0d831a88e74d5f61811b74d.zip
boost155: Not supported on aarch64
Diffstat (limited to 'pkgs/development/libraries/boost/generic.nix')
-rw-r--r--pkgs/development/libraries/boost/generic.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/boost/generic.nix b/pkgs/development/libraries/boost/generic.nix
index 6adcce45d80..174e9fe4776 100644
--- a/pkgs/development/libraries/boost/generic.nix
+++ b/pkgs/development/libraries/boost/generic.nix
@@ -126,7 +126,7 @@ stdenv.mkDerivation {
     description = "Collection of C++ libraries";
     license = stdenv.lib.licenses.boost;
 
-    platforms = platforms.unix;
+    platforms = (if versionOlder version "1.59" then remove "aarch64-linux" else id) platforms.unix;
     maintainers = with maintainers; [ peti wkennington ];
   };