povray: use xorg.* packages directly instead of xlibsWrapper indirection

Tested as no material change in `out` output with `diffoscope`.

authored by Sergei Trofimovich and committed by Bjørn Forsman b4530d1e d09843bf

+15 -3
+15 -3
pkgs/tools/graphics/povray/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoconf, automake, boost 2 - , zlib, libpng, libjpeg, libtiff, xlibsWrapper, SDL 3 }: 4 5 stdenv.mkDerivation rec { ··· 14 }; 15 16 nativeBuildInputs = [ automake autoconf ]; 17 - buildInputs = [ boost zlib libpng libjpeg libtiff xlibsWrapper SDL ]; 18 19 # the installPhase wants to put files into $HOME. I let it put the files 20 # to $TMPDIR, so they don't get into the $out
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , autoconf 5 + , automake 6 + , boost 7 + , zlib 8 + , libX11 9 + , libICE 10 + , libSM 11 + , libpng 12 + , libjpeg 13 + , libtiff 14 + , SDL 15 }: 16 17 stdenv.mkDerivation rec { ··· 26 }; 27 28 nativeBuildInputs = [ automake autoconf ]; 29 + buildInputs = [ boost zlib libX11 libICE libSM libpng libjpeg libtiff SDL ]; 30 31 # the installPhase wants to put files into $HOME. I let it put the files 32 # to $TMPDIR, so they don't get into the $out