aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/libtorrent-rasterbar
diff options
context:
space:
mode:
authorEvgeny Egorochkin <phreedom@yandex.ru>2013-12-24 23:19:55 +0200
committerEvgeny Egorochkin <phreedom@yandex.ru>2013-12-24 23:19:55 +0200
commit91decd3a354e56e4f413a3b8139a6022fae1ba43 (patch)
treedf5ffcc1e6d588bf8427fc0421c7c9176c07d793 /pkgs/development/libraries/libtorrent-rasterbar
parentdad3202472574e9fcf846d0c46434e288ab9fc70 (diff)
libtorrentRasterbar: add missing dependencies
Diffstat (limited to 'pkgs/development/libraries/libtorrent-rasterbar')
-rw-r--r--pkgs/development/libraries/libtorrent-rasterbar/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libtorrent-rasterbar/default.nix b/pkgs/development/libraries/libtorrent-rasterbar/default.nix
index b4380c719867..035077e12a6f 100644
--- a/pkgs/development/libraries/libtorrent-rasterbar/default.nix
+++ b/pkgs/development/libraries/libtorrent-rasterbar/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, boost, openssl, pkgconfig, zlib, python }:
+{ stdenv, fetchurl, boost, openssl, pkgconfig, zlib, python, libiconvOrNull, geoip }:
stdenv.mkDerivation rec {
name = "libtorrent-rasterbar-${version}";
@@ -9,12 +9,14 @@ stdenv.mkDerivation rec {
sha256 = "1sr788hhip6pgfb842110nl36hqdc1vz2s9n5vzypm0jy7qklmvm";
};
- buildInputs = [ boost pkgconfig openssl zlib python ];
+ buildInputs = [ boost pkgconfig openssl zlib python libiconvOrNull geoip ];
configureFlags = [
"--with-boost=${boost}/include/boost"
"--with-boost-libdir=${boost}/lib"
"--enable-python-binding"
+ "--with-libgeoip=system"
+ "--with-libiconv=yes"
];
meta = with stdenv.lib; {