lua5: Re-enabel on Darwin

Prior to 1bf5ded193 this contained
`hydraPlatforms = platforms.linux`, which was apparently misleading.
This commit is contained in:
Tuomas Tynkkynen 2016-08-02 23:12:20 +03:00
parent dc26ac6e04
commit 3875690d80
2 changed files with 2 additions and 2 deletions

View File

@ -97,6 +97,6 @@ stdenv.mkDerivation rec {
for configuration, scripting, and rapid prototyping. for configuration, scripting, and rapid prototyping.
''; '';
license = stdenv.lib.licenses.mit; license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.linux; platforms = stdenv.lib.platforms.unix;
}; };
} }

View File

@ -96,6 +96,6 @@ stdenv.mkDerivation rec {
for configuration, scripting, and rapid prototyping. for configuration, scripting, and rapid prototyping.
''; '';
license = stdenv.lib.licenses.mit; license = stdenv.lib.licenses.mit;
platforms = stdenv.lib.platforms.linux; platforms = stdenv.lib.platforms.unix;
}; };
} }