aboutsummaryrefslogtreecommitdiff
path: root/pkgs/games/ue4demos
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/ue4demos
parent3216cf6cdf5a9d0e77af10add1a9cd5c0d6106c2 (diff)
treewide: remove platform assertions
linux: readd assertion
Diffstat (limited to 'pkgs/games/ue4demos')
-rw-r--r--pkgs/games/ue4demos/default.nix6
1 files changed, 1 insertions, 5 deletions
diff --git a/pkgs/games/ue4demos/default.nix b/pkgs/games/ue4demos/default.nix
index 4bac1cd1bb35..0bdb759048ad 100644
--- a/pkgs/games/ue4demos/default.nix
+++ b/pkgs/games/ue4demos/default.nix
@@ -1,8 +1,5 @@
{ stdenv, fetchurl, unzip, patchelf, xorg, openal }:
-assert stdenv.isLinux;
-assert stdenv.isx86_64;
-
let
buildDemo = { name, src }:
stdenv.mkDerivation rec {
@@ -47,7 +44,7 @@ let
meta = {
description = "Unreal Engine 4 Linux demos";
homepage = https://wiki.unrealengine.com/Linux_Demos;
- platforms = stdenv.lib.platforms.linux;
+ platforms = [ "x86_64-linux" ];
license = stdenv.lib.licenses.unfree;
};
};
@@ -189,4 +186,3 @@ in {
};
};
}
-