nixpkgs/pkgs/tools/graphics/povray/default.nix

50 lines
1.5 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoconf, automake, boost
, zlib, libpng, libjpeg, libtiff, xlibsWrapper, SDL
2017-08-12 19:06:46 +00:00
}:
stdenv.mkDerivation rec {
pname = "povray";
version = "3.8.0-x.10064738";
2017-08-12 19:06:46 +00:00
src = fetchFromGitHub {
owner = "POV-Ray";
repo = "povray";
rev = "v${version}";
sha256 = "0hy5a3q5092szk2x3s9lpn1zkszgq9bp15rxzdncxlvnanyzsasf";
};
buildInputs = [ autoconf automake boost zlib libpng libjpeg libtiff xlibsWrapper SDL ];
# the installPhase wants to put files into $HOME. I let it put the files
# to $TMPDIR, so they don't get into the $out
postPatch = '' cd unix
./prebuild.sh
cd ..
sed -i -e 's/^povconfuser.*/povconfuser=$(TMPDIR)\/povray/' Makefile.{am,in}
sed -i -e 's/^povuser.*/povuser=$(TMPDIR)\/.povray/' Makefile.{am,in}
sed -i -e 's/^povowner.*/povowner=nobody/' Makefile.{am,in}
sed -i -e 's/^povgroup.*/povgroup=nogroup/' Makefile.{am,in}
'';
2017-11-23 19:58:20 +00:00
configureFlags = [ "COMPILED_BY='nix'" "--with-boost-thread=boost_thread" "--with-x" ];
2015-02-15 17:33:19 +00:00
enableParallelBuilding = true;
preInstall = ''
mkdir "$TMP/bin"
for i in chown chgrp; do
echo '#!${stdenv.shell}' >> "$TMP/bin/$i"
chmod +x "$TMP/bin/$i"
PATH="$TMP/bin:$PATH"
done
'';
meta = with lib; {
homepage = "http://www.povray.org/";
description = "Persistence of Vision Raytracer";
2015-02-15 17:33:19 +00:00
license = licenses.free;
2017-08-12 19:06:46 +00:00
platforms = platforms.linux;
};
}