Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created March 17, 2018 19:50
Show Gist options
  • Save ryantm/fa0d5bf97223c22133fcaafdf63f56c7 to your computer and use it in GitHub Desktop.
Save ryantm/fa0d5bf97223c22133fcaafdf63f56c7 to your computer and use it in GitHub Desktop.
/nix/store/ffs2r0398pl6nn4v0vdan0djslaaxii4-bluez-5.49
├── bin
│   ├── bccmd
│   ├── bluemoon
│   ├── bluetoothctl
│   ├── bluetoothd -> ../libexec/bluetooth/bluetoothd
│   ├── bluez-list-devices -> ../test/list-devices
│   ├── bluez-monitor-bluetooth -> ../test/monitor-bluetooth
│   ├── bluez-simple-agent -> ../test/simple-agent
│   ├── bluez-test-adapter -> ../test/test-adapter
│   ├── bluez-test-device -> ../test/test-device
│   ├── bluez-test-thermometer -> ../test/test-thermometer
│   ├── btattach
│   ├── btmon
│   ├── hex2hcd
│   ├── l2ping
│   ├── l2test
│   ├── mpris-proxy
│   ├── obexd -> ../libexec/bluetooth/obexd
│   └── rctest
├── etc
│   ├── dbus-1
│   │   └── system.d
│   │   └── bluetooth.conf
│   └── systemd
│   ├── system
│   │   └── bluetooth.service
│   └── user
│   └── obex.service
├── include
│   └── bluetooth
│   ├── bluetooth.h
│   ├── bnep.h
│   ├── cmtp.h
│   ├── hci.h
│   ├── hci_lib.h
│   ├── hidp.h
│   ├── l2cap.h
│   ├── rfcomm.h
│   ├── sco.h
│   ├── sdp.h
│   └── sdp_lib.h
├── lib
│   ├── cups
│   │   └── backend
│   │   └── bluetooth
│   ├── libbluetooth.la
│   ├── libbluetooth.so -> libbluetooth.so.3.18.16
│   ├── libbluetooth.so.3 -> libbluetooth.so.3.18.16
│   ├── libbluetooth.so.3.18.16
│   ├── pkgconfig
│   │   └── bluez.pc
│   └── udev
│   ├── hid2hci
│   └── rules.d
│   └── 97-hid2hci.rules
├── libexec
│   └── bluetooth
│   ├── bluetoothd
│   └── obexd
├── sbin -> bin
├── share
│   ├── dbus-1
│   │   ├── services
│   │   │   └── org.bluez.obex.service
│   │   └── system-services
│   │   └── org.bluez.service
│   └── man
│   ├── man1
│   │   ├── bccmd.1.gz
│   │   ├── btattach.1.gz
│   │   ├── hid2hci.1.gz
│   │   ├── l2ping.1.gz
│   │   └── rctest.1.gz
│   └── man8
│   └── bluetoothd.8.gz
└── test
├── bluezutils.py
├── dbusdef.py
├── example-advertisement
├── example-gatt-client
├── example-gatt-server
├── ftp-client
├── list-devices
├── map-client
├── monitor-bluetooth
├── opp-client
├── pbap-client
├── sap_client.py
├── service-did.xml
├── service-ftp.xml
├── service-opp.xml
├── service-record.dtd
├── service-spp.xml
├── simple-agent
├── simple-endpoint
├── simple-player
├── test-adapter
├── test-device
├── test-discovery
├── test-gatt-profile
├── test-health
├── test-health-sink
├── test-hfp
├── test-manager
├── test-nap
├── test-network
├── test-profile
└── test-sap-server
26 directories, 82 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment