about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorSilvan Mosberger <contact@infinisil.com>2023-12-31 22:07:46 +0100
committerGitHub <noreply@github.com>2023-12-31 22:07:46 +0100
commitc98d1bdee64aef7922f83ac5b1fe8bf584ff231c (patch)
tree6a069b2fd1fff72e3f95e88978e6fc5c5ee7015c /pkgs/development/libraries
parentf4525eefb3706ce2b610dcad22c47ea7a8ac8fcc (diff)
parent14b118856b8a40493daf401a32de45f2e03fa8db (diff)
downloadnixlib-c98d1bdee64aef7922f83ac5b1fe8bf584ff231c.tar
nixlib-c98d1bdee64aef7922f83ac5b1fe8bf584ff231c.tar.gz
nixlib-c98d1bdee64aef7922f83ac5b1fe8bf584ff231c.tar.bz2
nixlib-c98d1bdee64aef7922f83ac5b1fe8bf584ff231c.tar.lz
nixlib-c98d1bdee64aef7922f83ac5b1fe8bf584ff231c.tar.xz
nixlib-c98d1bdee64aef7922f83ac5b1fe8bf584ff231c.tar.zst
nixlib-c98d1bdee64aef7922f83ac5b1fe8bf584ff231c.zip
Merge pull request #276112 from tweag/some-eval-fixes
Various eval fixes with `allowAliases = false`
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/wtk/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/development/libraries/wtk/default.nix b/pkgs/development/libraries/wtk/default.nix
index da856226d4e9..1360895942a4 100644
--- a/pkgs/development/libraries/wtk/default.nix
+++ b/pkgs/development/libraries/wtk/default.nix
@@ -1,7 +1,5 @@
 { lib, stdenv, requireFile, unzip, xorg }:
 
-assert stdenv.hostPlatform.system == "i686-linux";
-
 stdenv.mkDerivation rec {
   pname = "sun-java-wtk";
   version = "2.5.2_01";
@@ -23,5 +21,6 @@ stdenv.mkDerivation rec {
     description = "Sun Java Wireless Toolkit 2.5.2_01 for CLDC";
     sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
     license = lib.licenses.unfree;
+    platforms = [ "i686-linux" ];
   };
 }