about summary refs log tree commit diff
path: root/pkgs/development/libraries/sbc/default.nix
blob: d621eed67285aee60d2d2a499c169414ea267980 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, fetchurl, libsndfile, pkgconfig }:

stdenv.mkDerivation rec {
  name = "sbc-1.0";

  src = fetchurl {
    url = "http://www.kernel.org/pub/linux/bluetooth/${name}.tar.xz";
    sha256 = "10mq2rmh3h90bwq5cdcmizf93zf8f2br8gds0jxr9i962ai0m5xz";
  };

  buildInputs = [ pkgconfig libsndfile ];

  meta = {
    description = "SubBand Codec Library";

    homepage = http://www.bluez.org/;

    licenses = stdenv.lib.licenses.gpl2;

    maintainers = [ stdenv.lib.maintainers.shlevy ];
  };
}