My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/sbc/default.nix

21 lines
536 B

{ lib, stdenv, fetchurl, pkg-config, libsndfile }:
stdenv.mkDerivation rec {
pname = "sbc";
version = "1.4";
src = fetchurl {
url = "https://www.kernel.org/pub/linux/bluetooth/${pname}-${version}.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;
};
}