mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
povray: use xorg.* packages directly instead of xlibsWrapper indirection
Tested as no material change in `out` output with `diffoscope`.
This commit is contained in:
parent
d09843bf11
commit
b4530d1ed4
@ -1,5 +1,17 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, autoconf, automake, boost
|
{ lib
|
||||||
, zlib, libpng, libjpeg, libtiff, xlibsWrapper, SDL
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
, autoconf
|
||||||
|
, automake
|
||||||
|
, boost
|
||||||
|
, zlib
|
||||||
|
, libX11
|
||||||
|
, libICE
|
||||||
|
, libSM
|
||||||
|
, libpng
|
||||||
|
, libjpeg
|
||||||
|
, libtiff
|
||||||
|
, SDL
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -14,7 +26,7 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ automake autoconf ];
|
nativeBuildInputs = [ automake autoconf ];
|
||||||
buildInputs = [ boost zlib libpng libjpeg libtiff xlibsWrapper SDL ];
|
buildInputs = [ boost zlib libX11 libICE libSM libpng libjpeg libtiff SDL ];
|
||||||
|
|
||||||
# the installPhase wants to put files into $HOME. I let it put the files
|
# the installPhase wants to put files into $HOME. I let it put the files
|
||||||
# to $TMPDIR, so they don't get into the $out
|
# to $TMPDIR, so they don't get into the $out
|
||||||
|
Loading…
Reference in New Issue
Block a user