2022-05-13 04:53:41 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, cmake, CoreServices }:
|
2020-05-13 15:00:56 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libbtbb";
|
2021-01-08 10:27:30 +00:00
|
|
|
version = "2020-12-R1";
|
2020-05-13 15:00:56 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "greatscottgadgets";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2021-01-08 10:27:30 +00:00
|
|
|
sha256 = "1byv8174xam7siakr1p0523x97wkh0fmwmq341sd3g70qr2g767d";
|
2020-05-13 15:00:56 +00:00
|
|
|
};
|
|
|
|
|
2022-05-13 04:53:41 +00:00
|
|
|
nativeBuildInputs = [ cmake ] ++ lib.optionals stdenv.isDarwin [ CoreServices ];
|
2020-05-13 15:00:56 +00:00
|
|
|
|
2022-05-17 11:04:35 +00:00
|
|
|
# https://github.com/greatscottgadgets/libbtbb/issues/63
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace lib/libbtbb.pc.in \
|
|
|
|
--replace '$'{prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@ \
|
|
|
|
--replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@
|
|
|
|
'';
|
|
|
|
|
2021-04-02 13:37:43 +00:00
|
|
|
meta = with lib; {
|
2020-05-13 15:00:56 +00:00
|
|
|
description = "Bluetooth baseband decoding library";
|
|
|
|
homepage = "https://github.com/greatscottgadgets/libbtbb";
|
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = with maintainers; [ oxzi ];
|
|
|
|
};
|
|
|
|
}
|