mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
imagemagick, soxr, fftw, libraw: remove explicit gcc.lib
It is no longer needed after cc-wrapper fixes.
This commit is contained in:
parent
8adabe6679
commit
6c75f4c9aa
@ -35,7 +35,6 @@ stdenv.mkDerivation rec {
|
||||
buildInputs =
|
||||
[ pkgconfig libtool zlib fontconfig freetype ghostscript libjpeg
|
||||
openexr libpng librsvg libtiff libxml2
|
||||
libxml2 (stdenv.cc.cc.lib or null)
|
||||
];
|
||||
|
||||
propagatedBuildInputs =
|
||||
|
@ -17,9 +17,6 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
buildInputs = [ (stdenv.cc.cc.lib or null) ];
|
||||
# outputs TODO: gcc.lib might become a problem;
|
||||
# here -out/lib/*.a got found and -lib/lib/*.so didn't
|
||||
|
||||
meta = {
|
||||
description = "An audio resampling library";
|
||||
|
@ -17,8 +17,6 @@ stdenv.mkDerivation rec {
|
||||
outputs = [ "dev" "out" "doc" ]; # it's dev-doc only
|
||||
outputBin = "dev"; # fftw-wisdom
|
||||
|
||||
buildInputs = [ (stdenv.cc.cc.lib or null) ];
|
||||
|
||||
configureFlags =
|
||||
[ "--enable-shared" "--disable-static"
|
||||
"--enable-threads"
|
||||
|
@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "043kckxjqanw8dl3m9f6kvsf0l20ywxmgxd1xb0slj6m8l4w4hz6";
|
||||
};
|
||||
|
||||
buildInputs = [ lcms2 jasper (stdenv.cc.cc.lib or null) ] ;
|
||||
buildInputs = [ lcms2 jasper ];
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user