about summary refs log tree commit diff
path: root/pkgs/tools/bluetooth
diff options
context:
space:
mode:
authorThiago Kenji Okada <thiagokokada@gmail.com>2024-01-13 21:09:24 +0000
committerGitHub <noreply@github.com>2024-01-13 21:09:24 +0000
commit4799b9a0191846468c31edf8b3fd27ad24496055 (patch)
tree5115ce365906623ca2de423257a696f860851e3f /pkgs/tools/bluetooth
parentd2461615729e46b9db10cfbc7603d962afca480d (diff)
parent9944335ee24c8641c355fe5574619d18fca534b4 (diff)
Merge pull request #277322 from atorres1985-contrib/bluez-tools
Bluez-tools: cleanup
Diffstat (limited to 'pkgs/tools/bluetooth')
-rw-r--r--pkgs/tools/bluetooth/bluez-tools/default.nix26
1 files changed, 0 insertions, 26 deletions
diff --git a/pkgs/tools/bluetooth/bluez-tools/default.nix b/pkgs/tools/bluetooth/bluez-tools/default.nix
deleted file mode 100644
index 271daed016530..0000000000000
--- a/pkgs/tools/bluetooth/bluez-tools/default.nix
+++ /dev/null
@@ -1,26 +0,0 @@
-{ lib, stdenv, autoreconfHook, readline
-, fetchFromGitHub, glib, pkg-config }:
-
-stdenv.mkDerivation rec {
-  version = "unstable-2020-10-24";
-  pname = "bluez-tools";
-
-  src = fetchFromGitHub {
-    owner = "khvzak";
-    repo = "bluez-tools";
-    rev = "f65321736475429316f07ee94ec0deac8e46ec4a";
-    sha256 = "0xk39lz3hm8lcnb5fdbfz4ldbbq8gswg95vilzdwxzrglcr6xnqq";
-  };
-
-  nativeBuildInputs = [ pkg-config autoreconfHook ];
-
-  buildInputs = [ readline glib ];
-
-  meta = with lib; {
-    description = "Command line bluetooth manager for Bluez5";
-    license = licenses.gpl2;
-    maintainers = [ ];
-    platforms = platforms.unix;
-  };
-
-}