about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorTuomas Tynkkynen <tuomas@tuxera.com>2016-08-02 23:12:20 +0300
committerTuomas Tynkkynen <tuomas@tuxera.com>2016-08-02 23:14:21 +0300
commit3875690d80d257a76ef19d7db828fbb19e4a955e (patch)
tree1c3161e1da5a3ac41938f7c1edad11319e10ab28 /pkgs
parentdc26ac6e04b98fab87dab03941819d937f02f573 (diff)
downloadnixlib-3875690d80d257a76ef19d7db828fbb19e4a955e.tar
nixlib-3875690d80d257a76ef19d7db828fbb19e4a955e.tar.gz
nixlib-3875690d80d257a76ef19d7db828fbb19e4a955e.tar.bz2
nixlib-3875690d80d257a76ef19d7db828fbb19e4a955e.tar.lz
nixlib-3875690d80d257a76ef19d7db828fbb19e4a955e.tar.xz
nixlib-3875690d80d257a76ef19d7db828fbb19e4a955e.tar.zst
nixlib-3875690d80d257a76ef19d7db828fbb19e4a955e.zip
lua5: Re-enabel on Darwin
Prior to 1bf5ded1933b18af9a95dc263063756ed9d383ba this contained
`hydraPlatforms = platforms.linux`, which was apparently misleading.
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/interpreters/lua-5/5.2.nix2
-rw-r--r--pkgs/development/interpreters/lua-5/5.3.nix2
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/interpreters/lua-5/5.2.nix b/pkgs/development/interpreters/lua-5/5.2.nix
index 37e12c9dc1cc..fa5113fd5727 100644
--- a/pkgs/development/interpreters/lua-5/5.2.nix
+++ b/pkgs/development/interpreters/lua-5/5.2.nix
@@ -97,6 +97,6 @@ stdenv.mkDerivation rec {
       for configuration, scripting, and rapid prototyping.
     '';
     license = stdenv.lib.licenses.mit;
-    platforms = stdenv.lib.platforms.linux;
+    platforms = stdenv.lib.platforms.unix;
   };
 }
diff --git a/pkgs/development/interpreters/lua-5/5.3.nix b/pkgs/development/interpreters/lua-5/5.3.nix
index e2e24a11db4a..30c26a922ba9 100644
--- a/pkgs/development/interpreters/lua-5/5.3.nix
+++ b/pkgs/development/interpreters/lua-5/5.3.nix
@@ -96,6 +96,6 @@ stdenv.mkDerivation rec {
       for configuration, scripting, and rapid prototyping.
     '';
     license = stdenv.lib.licenses.mit;
-    platforms = stdenv.lib.platforms.linux;
+    platforms = stdenv.lib.platforms.unix;
   };
 }