nixpkgs/pkgs/development/libraries/sbc/default.nix
2013-06-22 17:25:47 +02:00

23 lines
496 B
Nix

{ stdenv, fetchurl, libsndfile, pkgconfig }:
stdenv.mkDerivation rec {
name = "sbc-1.1";
src = fetchurl {
url = "http://www.kernel.org/pub/linux/bluetooth/${name}.tar.xz";
sha256 = "1ipvkhilyhdbd2nzq0la6l7q361l0zm0c6kvga2a0y89q8nssc4s";
};
buildInputs = [ pkgconfig libsndfile ];
meta = {
description = "SubBand Codec Library";
homepage = http://www.bluez.org/;
licenses = stdenv.lib.licenses.gpl2;
maintainers = [ stdenv.lib.maintainers.shlevy ];
};
}