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

22 lines
536 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, libsndfile }:
2012-07-31 21:13:53 +00:00
stdenv.mkDerivation rec {
2021-06-22 13:21:29 +00:00
pname = "sbc";
version = "1.4";
2012-07-31 21:13:53 +00:00
src = fetchurl {
2021-06-22 13:21:29 +00:00
url = "https://www.kernel.org/pub/linux/bluetooth/${pname}-${version}.tar.xz";
sha256 = "1jal98pnrjkzxlkiqy0ykh4qmgnydz9bmsp1jn581p5kddpg92si";
2012-07-31 21:13:53 +00:00
};
nativeBuildInputs = [ pkg-config ];
2015-04-25 22:30:42 +00:00
buildInputs = [ libsndfile ];
2012-07-31 21:13:53 +00:00
meta = with lib; {
2012-07-31 21:13:53 +00:00
description = "SubBand Codec Library";
homepage = "http://www.bluez.org/";
2015-04-25 22:30:42 +00:00
license = licenses.gpl2;
2015-04-25 22:54:12 +00:00
platforms = platforms.linux;
2012-07-31 21:13:53 +00:00
};
}