summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2016-09-05 21:50:47 +0200
committerMichael Raskin <7c6f434c@mail.ru>2016-09-06 18:18:00 +0200
commit9d1d0dd546e37b1b71ad83138fe6e8d58270344f (patch)
tree6add1eeecb2d1dcc754b734b528ef27cfb3c24f4
parent98102ebd92ab52e198271dce02515023baa7d6d5 (diff)
downloadnixpkgs-9d1d0dd546e37b1b71ad83138fe6e8d58270344f.tar
nixpkgs-9d1d0dd546e37b1b71ad83138fe6e8d58270344f.tar.gz
nixpkgs-9d1d0dd546e37b1b71ad83138fe6e8d58270344f.tar.bz2
nixpkgs-9d1d0dd546e37b1b71ad83138fe6e8d58270344f.tar.lz
nixpkgs-9d1d0dd546e37b1b71ad83138fe6e8d58270344f.tar.xz
nixpkgs-9d1d0dd546e37b1b71ad83138fe6e8d58270344f.tar.zst
nixpkgs-9d1d0dd546e37b1b71ad83138fe6e8d58270344f.zip
neural-style: restrict to 64-bit Linux because it wants too much RAM
-rw-r--r--pkgs/tools/graphics/neural-style/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/tools/graphics/neural-style/default.nix b/pkgs/tools/graphics/neural-style/default.nix
index 3eb9a16880a..99421cfde17 100644
--- a/pkgs/tools/graphics/neural-style/default.nix
+++ b/pkgs/tools/graphics/neural-style/default.nix
@@ -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"];
   };
 }