nixpkgs/pkgs/development/libraries/sbc/default.nix

21 lines
441 B
Nix
Raw Normal View History

2012-07-31 22:13:53 +01:00
{ stdenv, fetchurl, libsndfile, pkgconfig }:
stdenv.mkDerivation rec {
name = "sbc-1.1";
2012-07-31 22:13:53 +01:00
src = fetchurl {
url = "http://www.kernel.org/pub/linux/bluetooth/${name}.tar.xz";
sha256 = "1ipvkhilyhdbd2nzq0la6l7q361l0zm0c6kvga2a0y89q8nssc4s";
2012-07-31 22:13:53 +01:00
};
buildInputs = [ pkgconfig libsndfile ];
meta = {
description = "SubBand Codec Library";
homepage = http://www.bluez.org/;
2014-01-24 15:27:36 +00:00
license = stdenv.lib.licenses.gpl2;
2012-07-31 22:13:53 +01:00
};
}