nixpkgs/pkgs/development/libraries/sbc/default.nix
R. RyanTM d545e4dd52 sbc: 1.3 -> 1.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/sbc/versions
2018-10-13 18:40:40 -07:00

22 lines
558 B
Nix

{ stdenv, fetchurl, pkgconfig, libsndfile }:
stdenv.mkDerivation rec {
name = "sbc-1.4";
src = fetchurl {
url = "http://www.kernel.org/pub/linux/bluetooth/${name}.tar.xz";
sha256 = "1jal98pnrjkzxlkiqy0ykh4qmgnydz9bmsp1jn581p5kddpg92si";
};
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 ];
};
}