about summary refs log tree commit diff
path: root/pkgs/tools/misc/sixpair/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/sixpair/default.nix')
-rw-r--r--pkgs/tools/misc/sixpair/default.nix40
1 files changed, 0 insertions, 40 deletions
diff --git a/pkgs/tools/misc/sixpair/default.nix b/pkgs/tools/misc/sixpair/default.nix
deleted file mode 100644
index 92f7e81c0ccd..000000000000
--- a/pkgs/tools/misc/sixpair/default.nix
+++ /dev/null
@@ -1,40 +0,0 @@
-{ lib, stdenv, fetchurl, libusb-compat-0_1 }:
-stdenv.mkDerivation {
-  pname = "sixpair";
-  version = "unstable-2007-04-18";
-
-  src = fetchurl {
-    url = "http://www.pabr.org/sixlinux/sixpair.c";
-    sha256 = "1b0a3k7gs544cbji7n29jxlrsscwfx6s1r2sgwdl6hmkc1l9gagr";
-  };
-
-  # hcitool is depricated
-  patches = [ ./hcitool.patch ];
-
-  buildInputs = [ libusb-compat-0_1 ];
-
-  unpackPhase = ''
-    cp $src sixpair.c
-  '';
-
-  buildPhase = ''
-    cc -o sixpair sixpair.c -lusb
-  '';
-
-  installPhase = ''
-    mkdir -p $out/bin
-    cp sixpair $out/bin/sixpair
-  '';
-
-  meta = {
-    description = "Pair with SIXAXIS controllers over USB";
-    longDescription = ''
-      This command-line utility searches USB buses for SIXAXIS controllers and tells them to connect to a new Bluetooth master.
-    '';
-    homepage = "http://www.pabr.org/sixlinux/";
-    license = lib.licenses.gpl2Only;
-    maintainers = [ lib.maintainers.tomsmeets ];
-    platforms = lib.platforms.linux;
-    mainProgram = "sixpair";
-  };
-}