2016-09-18 20:35:23 +01:00
|
|
|
{ stdenv, fetchurl, gnome3, pkgconfig, gtk3, intltool, glib
|
|
|
|
, udev, itstool, libxml2, makeWrapper, libnotify, libcanberra_gtk3 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
inherit (import ./src.nix fetchurl) name src;
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ intltool glib gtk3 udev libxml2 gnome3.defaultIconTheme
|
2016-09-18 20:35:23 +01:00
|
|
|
makeWrapper gnome3.gsettings_desktop_schemas itstool
|
|
|
|
libnotify libcanberra_gtk3 ];
|
|
|
|
|
|
|
|
preFixup = ''
|
|
|
|
wrapProgram "$out/bin/bluetooth-sendto" \
|
|
|
|
--prefix XDG_DATA_DIRS : "$XDG_ICON_DIRS:$GSETTINGS_SCHEMAS_PATH"
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://help.gnome.org/users/gnome-bluetooth/stable/index.html.en;
|
|
|
|
description = "Application that let you manage Bluetooth in the GNOME destkop";
|
|
|
|
maintainers = gnome3.maintainers;
|
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|