about summary refs log tree commit diff
path: root/pkgs/misc/emulators
diff options
context:
space:
mode:
authorSander van der Burg <svanderburg@gmail.com>2017-09-10 12:19:11 +0000
committerSander van der Burg <svanderburg@gmail.com>2017-09-10 12:19:11 +0000
commit0d8e157d61cc1e1050668e7c1801f0e1b6fe0111 (patch)
treecc539d03086922c1e78d5cddd8ad05896259a67a /pkgs/misc/emulators
parent6d3ca5fce065e618d62ea121fa9b5584e1d5c51d (diff)
downloadnixlib-0d8e157d61cc1e1050668e7c1801f0e1b6fe0111.tar
nixlib-0d8e157d61cc1e1050668e7c1801f0e1b6fe0111.tar.gz
nixlib-0d8e157d61cc1e1050668e7c1801f0e1b6fe0111.tar.bz2
nixlib-0d8e157d61cc1e1050668e7c1801f0e1b6fe0111.tar.lz
nixlib-0d8e157d61cc1e1050668e7c1801f0e1b6fe0111.tar.xz
nixlib-0d8e157d61cc1e1050668e7c1801f0e1b6fe0111.tar.zst
nixlib-0d8e157d61cc1e1050668e7c1801f0e1b6fe0111.zip
zsnes: restrict building to x86-based Linux platforms only, znses' core is written in x86 asm code
Diffstat (limited to 'pkgs/misc/emulators')
-rw-r--r--pkgs/misc/emulators/zsnes/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/misc/emulators/zsnes/default.nix b/pkgs/misc/emulators/zsnes/default.nix
index 6f3957379e53..ad80cb13f78c 100644
--- a/pkgs/misc/emulators/zsnes/default.nix
+++ b/pkgs/misc/emulators/zsnes/default.nix
@@ -58,6 +58,6 @@ in stdenv.mkDerivation {
     license = stdenv.lib.licenses.gpl2Plus;
     maintainers = [ stdenv.lib.maintainers.sander ];
     homepage = http://www.zsnes.com;
-    platforms = stdenv.lib.platforms.linux;
+    platforms = [ "i686-linux" "x86_64-linux" ];
   };
 }