forked from mirrors/nixpkgs
propagate many inputs in imagemagick: otherwise dependent builds fail
This commit is contained in:
parent
113c6c8f6a
commit
70a1e3c837
|
@ -79,6 +79,18 @@ stdenv.mkDerivation rec {
|
|||
libxml2
|
||||
];
|
||||
|
||||
propagatedBuildInputs = []
|
||||
++ (stdenv.lib.optional (lcms2 != null) lcms2)
|
||||
++ (stdenv.lib.optional (liblqr1 != null) liblqr1)
|
||||
++ (stdenv.lib.optional (fftw != null) fftw)
|
||||
++ (stdenv.lib.optional (libtool != null) libtool)
|
||||
++ (stdenv.lib.optional (jemalloc != null) jemalloc)
|
||||
++ (stdenv.lib.optional (libXext != null) libXext)
|
||||
++ (stdenv.lib.optional (libX11 != null) libX11)
|
||||
++ (stdenv.lib.optional (libXt != null) libXt)
|
||||
++ (stdenv.lib.optional (bzip2 != null) bzip2)
|
||||
;
|
||||
|
||||
postInstall = ''(cd "$out/include" && ln -s ImageMagick* ImageMagick)'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
|
Loading…
Reference in a new issue