neural-style: restrict to 64-bit Linux because it wants too much RAM

This commit is contained in:
Michael Raskin
2016-09-06 18:18:00 +02:00
parent 98102ebd92
commit 9d1d0dd546
+2 -1
View File
@@ -52,6 +52,7 @@ stdenv.mkDerivation rec {
description = ''A torch implementation of the paper A Neural Algorithm of Artistic Style'';
license = stdenv.lib.licenses.mit ;
maintainers = [stdenv.lib.maintainers.raskin];
platforms = stdenv.lib.platforms.linux;
# Eats a lot of RAM
platforms = ["x86_64-linux"];
};
}