Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

povray: fix build and add platforms

+6 -3
+6 -3
pkgs/tools/graphics/povray/default.nix
··· 23 23 sed -i -e 's/^povgroup.*/povgroup=nogroup/' Makefile.{am,in} 24 24 ''; 25 25 26 - configureFlags = [ "COMPILED_BY='nix'" ]; 26 + configureFlags = [ "COMPILED_BY='nix'" "--with-boost-thread=boost_thread" ]; 27 27 28 + enableParallelBuilding = true; 29 + 28 30 preInstall = '' 29 31 mkdir "$TMP/bin" 30 32 for i in chown chgrp; do ··· 34 36 done 35 37 ''; 36 38 37 - meta = { 39 + meta = with stdenv.lib; { 38 40 homepage = http://www.povray.org/; 39 41 description = "Persistence of Vision Raytracer"; 40 - license = stdenv.lib.licenses.free; 42 + license = licenses.free; 43 + platforms = platforms.linux; 41 44 }; 42 45 }