summary refs log tree commit diff
diff options
context:
space:
mode:
authorDan Peebles <pumpkin@me.com>2017-03-23 22:41:45 -0400
committerDan Peebles <pumpkin@me.com>2017-03-23 22:41:45 -0400
commit306f2c65fe06fe6a8538b8056b7455ade882c044 (patch)
tree494afc6083867de4c25a0ccc5e8fe69098687624
parente0e520a5191542ba6b204f1226bf97299b85b286 (diff)
downloadnixpkgs-306f2c65fe06fe6a8538b8056b7455ade882c044.tar
nixpkgs-306f2c65fe06fe6a8538b8056b7455ade882c044.tar.gz
nixpkgs-306f2c65fe06fe6a8538b8056b7455ade882c044.tar.bz2
nixpkgs-306f2c65fe06fe6a8538b8056b7455ade882c044.tar.lz
nixpkgs-306f2c65fe06fe6a8538b8056b7455ade882c044.tar.xz
nixpkgs-306f2c65fe06fe6a8538b8056b7455ade882c044.tar.zst
nixpkgs-306f2c65fe06fe6a8538b8056b7455ade882c044.zip
zsnes: only build on Linux
It uses callPackage_i686 which forces Linux anyway, and the current setup
just means that we end up with a weird i686-linux job under Darwin.
-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 02f93eb931d..ae94c3de41b 100644
--- a/pkgs/misc/emulators/zsnes/default.nix
+++ b/pkgs/misc/emulators/zsnes/default.nix
@@ -57,6 +57,6 @@ in stdenv.mkDerivation {
     license = stdenv.lib.licenses.gpl2Plus;
     maintainers = [ stdenv.lib.maintainers.sander ];
     homepage = http://www.zsnes.com;
-    platforms = stdenv.lib.platforms.unix;
+    platforms = stdenv.lib.platforms.linux;
   };
 }