summary refs log tree commit diff
path: root/pkgs/tools/bluetooth/bluedevil/default.nix
blob: 229b0512679ba3aa0e1d2b519db7d3b3b3e36f61 (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 = "2.1.1";

  src = fetchurl {
    url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz";
    sha256 = "1rcx1dfm6sm90pvwyq224a1pph96chrmyiv1rry7zpb3hf2c73gi";
  };

  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 ];
  };

}