Files
nixpkgs/pkgs/by-name/si/sixpair/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

46 lines
1007 B
Nix

{
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 deprecated
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";
};
}