mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +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
|
||||
, zlib, libpng, libjpeg, libtiff, xlibsWrapper, SDL
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, autoconf
|
||||
, automake
|
||||
, boost
|
||||
, zlib
|
||||
, libX11
|
||||
, libICE
|
||||
, libSM
|
||||
, libpng
|
||||
, libjpeg
|
||||
, libtiff
|
||||
, SDL
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -14,7 +26,7 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
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
|
||||
# to $TMPDIR, so they don't get into the $out
|
||||
|
Loading…
Reference in New Issue
Block a user