summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/3.16/core/gnome-bluetooth/default.nix
blob: ab8f380f672afe62b6c675493fad5617bcc8f27d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, gnome3, pkgconfig, intltool, glib
, udev, itstool, libxml2 }:

stdenv.mkDerivation rec {
  name = "gnome-bluetooth-${gnome3.version}.1";

  src = fetchurl {
    url = "mirror://gnome/sources/gnome-bluetooth/${gnome3.version}/${name}.tar.xz";
    sha256 = "12z0792j5ln238ajhgqx5jrm34wz2yqbbskhlp23p9c0cwnj1srz";
  };

  buildInputs = with gnome3; [ pkgconfig intltool glib gtk3 udev libxml2
                               gsettings_desktop_schemas itstool ];

  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 = with maintainers; [ lethalman ];
    license = licenses.gpl2;
    platforms = platforms.linux;
  };
}