summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/misc/audio
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-04-20 20:26:09 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-04-21 09:59:37 +0200
commit082843bdebe3beee7399edfb30d9c393b23513b1 (patch)
tree4a4d4118b4b6549c339ad0527618dfbbfd3d0b2f /pkgs/applications/misc/audio
parenta56da607b132705052e03f79e0e41f47d27fd9b0 (diff)
soxr, libraw, fftw, imagemagick: fix build by a hack
Diffstat (limited to 'pkgs/applications/misc/audio')
-rw-r--r--pkgs/applications/misc/audio/soxr/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/applications/misc/audio/soxr/default.nix b/pkgs/applications/misc/audio/soxr/default.nix
index 084a95b962ad..c1ca0bac1191 100644
--- a/pkgs/applications/misc/audio/soxr/default.nix
+++ b/pkgs/applications/misc/audio/soxr/default.nix
@@ -14,7 +14,9 @@ stdenv.mkDerivation rec {
export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:"`pwd`/build/src
'';
- buildInputs = [ cmake ];
+ buildInputs = [ cmake (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";