nixpkgs/pkgs/development/libraries/sbc/default.nix
William A. Kennington III 14d52d7e0d Fix some platforms
2015-04-25 21:27:53 -07:00

22 lines
558 B
Nix

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