1 { lib, stdenv, fetchurl, pkg-config, libsndfile }:
3 stdenv.mkDerivation rec {
8 url = "https://www.kernel.org/pub/linux/bluetooth/${pname}-${version}.tar.xz";
9 sha256 = "sha256-jxI2jh279V4UU2UgRzz7M4yEs5KTnMm2Qpg2D9SgeZI=";
12 outputs = [ "out" "dev" ];
14 nativeBuildInputs = [ pkg-config ];
15 buildInputs = [ libsndfile ];
18 description = "SubBand Codec Library";
19 homepage = "http://www.bluez.org/";
20 license = licenses.gpl2;
21 platforms = platforms.linux;