mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
povray: fix build and add platforms
This commit is contained in:
parent
934f97281f
commit
ca2d7774e0
@ -23,7 +23,9 @@ stdenv.mkDerivation {
|
||||
sed -i -e 's/^povgroup.*/povgroup=nogroup/' Makefile.{am,in}
|
||||
'';
|
||||
|
||||
configureFlags = [ "COMPILED_BY='nix'" ];
|
||||
configureFlags = [ "COMPILED_BY='nix'" "--with-boost-thread=boost_thread" ];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
preInstall = ''
|
||||
mkdir "$TMP/bin"
|
||||
@ -34,9 +36,10 @@ stdenv.mkDerivation {
|
||||
done
|
||||
'';
|
||||
|
||||
meta = {
|
||||
meta = with stdenv.lib; {
|
||||
homepage = http://www.povray.org/;
|
||||
description = "Persistence of Vision Raytracer";
|
||||
license = stdenv.lib.licenses.free;
|
||||
license = licenses.free;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user