nixpkgs/pkgs/development/libraries/sbc/default.nix
2021-01-21 19:11:02 -08:00

21 lines
507 B
Nix

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