summary refs log tree commit diff
path: root/pkgs/development/tools/rtags
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-03-13 18:00:52 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-03-14 18:44:42 -0400
commitf79f80dbf267036a96f8eae281c8501482756d03 (patch)
treed2e37a9947ee5b952282025a5f5f5c4bf2090a7f /pkgs/development/tools/rtags
parent2d1d83d836e09e50469302101955ea6c58dcd206 (diff)
downloadnixpkgs-f79f80dbf267036a96f8eae281c8501482756d03.tar
nixpkgs-f79f80dbf267036a96f8eae281c8501482756d03.tar.gz
nixpkgs-f79f80dbf267036a96f8eae281c8501482756d03.tar.bz2
nixpkgs-f79f80dbf267036a96f8eae281c8501482756d03.tar.lz
nixpkgs-f79f80dbf267036a96f8eae281c8501482756d03.tar.xz
nixpkgs-f79f80dbf267036a96f8eae281c8501482756d03.tar.zst
nixpkgs-f79f80dbf267036a96f8eae281c8501482756d03.zip
treewide: get rid of platforms.allBut
Negative reasoning like `allBut` is a bad idea with an open world of
platforms. Concretely, if we add a new, quite different sort of
platform, existing packages with `allBut` will claim they work on it
even though they probably won't.
Diffstat (limited to 'pkgs/development/tools/rtags')
-rw-r--r--pkgs/development/tools/rtags/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/rtags/default.nix b/pkgs/development/tools/rtags/default.nix
index 13fbea3fc23..a2c75a02aa2 100644
--- a/pkgs/development/tools/rtags/default.nix
+++ b/pkgs/development/tools/rtags/default.nix
@@ -32,6 +32,6 @@ stdenv.mkDerivation rec {
     description = "C/C++ client-server indexer based on clang";
     homepage = https://github.com/andersbakken/rtags;
     license = stdenv.lib.licenses.gpl3;
-    platforms = stdenv.lib.platforms.allBut [ "i686-linux" ];
+    platforms = with stdenv.lib.platforms; x86_64 ++ aarch64;
   };
 }