mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-07 12:44:20 +00:00
![Jörg Thalheim](/assets/img/avatar_default.png)
He prefers to contribute to his own nixpkgs fork triton. Since he is still marked as maintainer in many packages this leaves the wrong impression he still maintains those.
21 lines
505 B
Nix
21 lines
505 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;
|
|
};
|
|
}
|