summaryrefslogtreecommitdiffstats
path: root/pkgs/tools
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/bluetooth/bluedevil/default.nix24
1 files changed, 0 insertions, 24 deletions
diff --git a/pkgs/tools/bluetooth/bluedevil/default.nix b/pkgs/tools/bluetooth/bluedevil/default.nix
deleted file mode 100644
index e018972d2aaf..000000000000
--- a/pkgs/tools/bluetooth/bluedevil/default.nix
+++ /dev/null
@@ -1,24 +0,0 @@
-{ stdenv, fetchurl, cmake, automoc4, kdelibs, libbluedevil, shared_mime_info, gettext }:
-
-stdenv.mkDerivation rec {
- name = "${pname}-${version}";
- pname = "bluedevil";
- # bluedevil must have the same major version (x.y) as libbluedevil!
- # do not update this package without checking libbluedevil
- 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 ];
- };
-
-}