about summary refs log tree commit diff
path: root/pkgs/tools/bluetooth/bluedevil/default.nix
blob: e5a4f83ab0f87c6aaf0f1747063e8bb61026eb1a (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, cmake, automoc4, kdelibs, libbluedevil, shared_mime_info, gettext }:

stdenv.mkDerivation rec {
  name = "${pname}-${version}";
  pname = "bluedevil";
  version = "1.3.1";

  src = fetchurl {
    url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.bz2";
    sha256 = "0di3hwgqzhx51x172wnbccf9f84cg69mab83qkcif0v3gv3pzy4f";
  };

  buildInputs = [ cmake kdelibs libbluedevil shared_mime_info automoc4 gettext ];

  meta = with stdenv.lib; {
    description = "Bluetooth manager for KDE";
    license = stdenv.lib.licenses.gpl2;
    inherit (kdelibs.meta) platforms;
    maintainers = [ maintainers.phreedom ];
  };

}