2010-07-06 14:54:22 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, intltool, python, pyrex, pygobject, pygtk
|
|
|
|
, notify, pythonDBus, bluez, glib, gtk, libstartup_notification
|
2011-05-04 14:10:17 +00:00
|
|
|
, makeWrapper, xdg_utils, obex_data_server
|
2011-09-01 10:03:01 +00:00
|
|
|
, pulseaudio
|
2010-07-06 14:54:22 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-09-06 16:12:35 +00:00
|
|
|
name = "blueman-1.23";
|
2010-07-06 14:54:22 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.tuxfamily.org/blueman/${name}.tar.gz";
|
2014-09-06 16:12:35 +00:00
|
|
|
sha256 = "04ghlh4h5bwp9mqr5jxcmjm01595l5fq5561qxvf369fvjy63cjh";
|
2010-07-06 14:54:22 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
configureFlags = "--disable-polkit";
|
|
|
|
|
|
|
|
buildInputs =
|
|
|
|
[ pkgconfig intltool python pyrex pygobject pygtk notify pythonDBus
|
|
|
|
bluez glib gtk libstartup_notification makeWrapper
|
|
|
|
];
|
|
|
|
|
|
|
|
# !!! Ugly.
|
|
|
|
PYTHONPATH = "${pygobject}/lib/${python.libPrefix}/site-packages/gtk-2.0:${pygtk}/lib/${python.libPrefix}/site-packages/gtk-2.0:${notify}/lib/${python.libPrefix}/site-packages/gtk-2.0";
|
|
|
|
|
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
# Create wrappers that set the environment correctly.
|
|
|
|
for i in $out/bin/* $out/libexec/*; do
|
|
|
|
wrapProgram $i \
|
|
|
|
--set PYTHONPATH "$(toPythonPath $out):$PYTHONPATH" \
|
2011-09-01 10:03:01 +00:00
|
|
|
--set LD_LIBRARY_PATH "${pulseaudio}/lib:" \
|
2010-07-06 14:54:22 +00:00
|
|
|
--prefix PATH : ${xdg_utils}/bin
|
|
|
|
done
|
2011-05-04 14:10:17 +00:00
|
|
|
|
|
|
|
mkdir -p $out/nix-support
|
|
|
|
echo ${obex_data_server} > $out/nix-support/propagated-user-env-packages
|
2010-07-06 14:54:22 +00:00
|
|
|
''; # */
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://blueman-project.org/;
|
|
|
|
description = "GTK+-based Bluetooth Manager";
|
|
|
|
};
|
|
|
|
}
|