nixpkgs/pkgs/development/libraries/sbc/default.nix
2023-05-17 10:09:01 +03:00

24 lines
565 B
Nix

{ lib, stdenv, fetchurl, pkg-config, libsndfile }:
stdenv.mkDerivation rec {
pname = "sbc";
version = "2.0";
src = fetchurl {
url = "https://www.kernel.org/pub/linux/bluetooth/${pname}-${version}.tar.xz";
sha256 = "sha256-jxI2jh279V4UU2UgRzz7M4yEs5KTnMm2Qpg2D9SgeZI=";
};
outputs = [ "out" "dev" ];
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libsndfile ];
meta = with lib; {
description = "SubBand Codec Library";
homepage = "http://www.bluez.org/";
license = licenses.gpl2;
platforms = platforms.linux;
};
}