1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/sbc/default.nix
Shea Levy ca116f76f9 Unmaintain a bunch of packages
Trying to take maintainership more seriously...

Signed-off-by: Shea Levy <shea@shealevy.com>
2014-01-21 22:34:41 -05:00

21 lines
442 B
Nix

{ stdenv, fetchurl, libsndfile, pkgconfig }:
stdenv.mkDerivation rec {
name = "sbc-1.1";
src = fetchurl {
url = "http://www.kernel.org/pub/linux/bluetooth/${name}.tar.xz";
sha256 = "1ipvkhilyhdbd2nzq0la6l7q361l0zm0c6kvga2a0y89q8nssc4s";
};
buildInputs = [ pkgconfig libsndfile ];
meta = {
description = "SubBand Codec Library";
homepage = http://www.bluez.org/;
licenses = stdenv.lib.licenses.gpl2;
};
}