Merge pull request #38776 from layus/fix-eval

gap-minimal: fix ofBorg evaluation
This commit is contained in:
Graham Christensen 2018-04-11 11:17:34 -04:00 committed by GitHub
commit 9b8668c79c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -96,7 +96,7 @@ stdenv.mkDerivation rec {
# keeping all packages increases the package size considerably, wchich # keeping all packages increases the package size considerably, wchich
# is why a local build is preferable in that situation. The timeframe # is why a local build is preferable in that situation. The timeframe
# is reasonable and that way the binary cache doesn't get overloaded. # is reasonable and that way the binary cache doesn't get overloaded.
hydraPlatforms = stdenv.lib.optionals (!keepAllPackages) platforms; hydraPlatforms = stdenv.lib.optionals (!keepAllPackages) meta.platforms;
license = licenses.gpl2; license = licenses.gpl2;
homepage = http://gap-system.org/; homepage = http://gap-system.org/;
}; };