From 71ba447c75f558aa7be4a24aaf558b18bb2f61b7 Mon Sep 17 00:00:00 2001 From: aszlig Date: Tue, 31 Mar 2015 16:48:07 +0200 Subject: tomahawk: Reference quazip library file directly. It's not a big issue, because due to Nix's stdenv it's going to be able to link anyway, but there still is a nasty warning, we're getting rid by this: WARNING: Target "tomahawklib" requests linking to directory "/nix/store/ybw942c8jw0dyjah0r0pcsgn8q0sv02h-quazip-0.7.1/lib". Targets may link only to libraries. CMake is dropping the item. Signed-off-by: aszlig --- pkgs/tomahawk/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tomahawk/default.nix b/pkgs/tomahawk/default.nix index 5a59ebbc..57fd3479 100644 --- a/pkgs/tomahawk/default.nix +++ b/pkgs/tomahawk/default.nix @@ -69,7 +69,7 @@ in stdenv.mkDerivation rec { "-DLUCENEPP_INCLUDE_DIR=${lucenepp}/include" "-DLUCENEPP_LIBRARY_DIR=${lucenepp}/lib" "-DQUAZIP_INCLUDE_DIR=${useQT5 quazip}/include" - "-DQUAZIP_LIBRARIES=${useQT5 quazip}/lib" + "-DQUAZIP_LIBRARIES=${useQT5 quazip}/lib/libquazip.so" ]; buildInputs = [ -- cgit 1.4.1