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

21 lines
505 B
Nix
Raw Normal View History

2015-04-26 00:30:42 +02:00
{ stdenv, fetchurl, pkgconfig, libsndfile }:
2012-07-31 23:13:53 +02:00
stdenv.mkDerivation rec {
name = "sbc-1.4";
2012-07-31 23:13:53 +02:00
src = fetchurl {
url = "http://www.kernel.org/pub/linux/bluetooth/${name}.tar.xz";
sha256 = "1jal98pnrjkzxlkiqy0ykh4qmgnydz9bmsp1jn581p5kddpg92si";
2012-07-31 23:13:53 +02:00
};
2015-04-26 00:30:42 +02:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libsndfile ];
2012-07-31 23:13:53 +02:00
2015-04-26 00:30:42 +02:00
meta = with stdenv.lib; {
2012-07-31 23:13:53 +02:00
description = "SubBand Codec Library";
homepage = http://www.bluez.org/;
2015-04-26 00:30:42 +02:00
license = licenses.gpl2;
2015-04-26 00:54:12 +02:00
platforms = platforms.linux;
2012-07-31 23:13:53 +02:00
};
}