oracle{jdk,jre}: add meta.platforms to fix #9786

It won't be built by Hydra anyway due to being unfree.
This commit is contained in:
Vladimír Čunát 2015-09-17 20:17:12 +02:00
parent e8c1717ff4
commit e922b6b0a2

View File

@ -182,6 +182,9 @@ let result = stdenv.mkDerivation rec {
passthru.home = result;
meta.license = stdenv.lib.licenses.unfree;
meta = with stdenv.lib; {
license = licenses.unfree;
platforms = [ "i686-linux" "x86_64-linux" ]; # some inherit jre.meta.platforms
};
}; in result