summary refs log tree commit diff
path: root/pkgs/games/sdlmame
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-05-03 00:58:11 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-05-03 13:09:20 -0500
commit143978a477e4891bd94be6d9fcf257f726b403cd (patch)
treeb93f545ca15d5dd7410e7ec13be3df1709b935c6 /pkgs/games/sdlmame
parent3216cf6cdf5a9d0e77af10add1a9cd5c0d6106c2 (diff)
downloadnixlib-143978a477e4891bd94be6d9fcf257f726b403cd.tar
nixlib-143978a477e4891bd94be6d9fcf257f726b403cd.tar.gz
nixlib-143978a477e4891bd94be6d9fcf257f726b403cd.tar.bz2
nixlib-143978a477e4891bd94be6d9fcf257f726b403cd.tar.lz
nixlib-143978a477e4891bd94be6d9fcf257f726b403cd.tar.xz
nixlib-143978a477e4891bd94be6d9fcf257f726b403cd.tar.zst
nixlib-143978a477e4891bd94be6d9fcf257f726b403cd.zip
treewide: remove platform assertions
linux: readd assertion
Diffstat (limited to 'pkgs/games/sdlmame')
-rw-r--r--pkgs/games/sdlmame/default.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/pkgs/games/sdlmame/default.nix b/pkgs/games/sdlmame/default.nix
index 947e52e1f13d..fa498b8e0411 100644
--- a/pkgs/games/sdlmame/default.nix
+++ b/pkgs/games/sdlmame/default.nix
@@ -1,7 +1,5 @@
 { stdenv, fetchurl, alsaLib, qt48, SDL, fontconfig, freetype, SDL_ttf, xorg }:
 
-assert stdenv.system == "x86_64-linux" || stdenv.system == "i686-linux";
-
 stdenv.mkDerivation rec {
   version = "0.151.u0-1";
   name    = "sdlmame-${version}";
@@ -39,6 +37,6 @@ stdenv.mkDerivation rec {
     description = "A port of the popular Multiple Arcade Machine Emulator using SDL with OpenGL support";
     license     = "MAME";
     maintainers = with maintainers; [ lovek323 ];
-    platforms   = platforms.linux;
+    platforms   = [ "x86_64-linux" "i686-linux" ];
   };
 }