libbtbb: init at 2018-12-R1
This commit is contained in:
parent
0946f962f4
commit
0458e69021
22
pkgs/development/libraries/libbtbb/default.nix
Normal file
22
pkgs/development/libraries/libbtbb/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ stdenv, fetchFromGitHub, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libbtbb";
|
||||
version = "2018-12-R1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "greatscottgadgets";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "07g7yapnbfgm7by8i2ppvx8s66jzha61d1bvm064jb2yi1734ppr";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Bluetooth baseband decoding library";
|
||||
homepage = "https://github.com/greatscottgadgets/libbtbb";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ oxzi ];
|
||||
};
|
||||
}
|
@ -4036,6 +4036,8 @@ in
|
||||
|
||||
libbladeRF = callPackage ../development/libraries/libbladeRF { };
|
||||
|
||||
libbtbb = callPackage ../development/libraries/libbtbb { };
|
||||
|
||||
lp_solve = callPackage ../applications/science/math/lp_solve { };
|
||||
|
||||
lprof = callPackage ../tools/graphics/lprof { };
|
||||
|
Loading…
Reference in New Issue
Block a user