summary refs log tree commit diff
path: root/pkgs/development/tools/analysis
diff options
context:
space:
mode:
authorWill Dietz <w@wdtz.org>2018-07-30 07:27:25 -0500
committerWill Dietz <w@wdtz.org>2018-07-30 07:27:25 -0500
commit541d30a3a932ce7aee4e7affa43089d1796b3aba (patch)
tree8064e53916f74526aa7b9a6dae02f2ddeef3524e /pkgs/development/tools/analysis
parent1e54a4e5e9521d37a76632d5b9c9dfa50b9a3f2c (diff)
downloadnixlib-541d30a3a932ce7aee4e7affa43089d1796b3aba.tar
nixlib-541d30a3a932ce7aee4e7affa43089d1796b3aba.tar.gz
nixlib-541d30a3a932ce7aee4e7affa43089d1796b3aba.tar.bz2
nixlib-541d30a3a932ce7aee4e7affa43089d1796b3aba.tar.lz
nixlib-541d30a3a932ce7aee4e7affa43089d1796b3aba.tar.xz
nixlib-541d30a3a932ce7aee4e7affa43089d1796b3aba.tar.zst
nixlib-541d30a3a932ce7aee4e7affa43089d1796b3aba.zip
rr: enable on 32bit x86
Lack of 32bit support led to the creation
of an overlay to add it back again,
but since it at least builds and seems to work
don't see why we'd disallow it here :).
Diffstat (limited to 'pkgs/development/tools/analysis')
-rw-r--r--pkgs/development/tools/analysis/rr/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/tools/analysis/rr/default.nix b/pkgs/development/tools/analysis/rr/default.nix
index d0d20362236b..9c2419b53589 100644
--- a/pkgs/development/tools/analysis/rr/default.nix
+++ b/pkgs/development/tools/analysis/rr/default.nix
@@ -51,6 +51,6 @@ stdenv.mkDerivation rec {
 
     license = "custom";
     maintainers = with stdenv.lib.maintainers; [ pierron thoughtpolice ];
-    platforms = ["x86_64-linux"];
+    platforms = stdenv.lib.platforms.x86;
   };
 }