nixpkgs/pkgs/tools/misc/sixpair/default.nix

39 lines
940 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl, libusb-compat-0_1 }:
stdenv.mkDerivation {
name = "sixpair-2007-04-18";
src = fetchurl {
url = "http://www.pabr.org/sixlinux/sixpair.c";
sha256 = "1b0a3k7gs544cbji7n29jxlrsscwfx6s1r2sgwdl6hmkc1l9gagr";
};
# hcitool is depricated
patches = [ ./hcitool.patch ];
2020-04-28 03:29:39 +00:00
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/";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl2;
maintainers = [ lib.maintainers.tomsmeets ];
platforms = lib.platforms.linux;
};
}