3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/libspatialaudio/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
675 B
Nix
Raw Normal View History

{ lib, stdenv, cmake, fetchFromGitHub, libmysofa, zlib }:
2021-12-20 02:12:08 +00:00
stdenv.mkDerivation rec {
pname = "libspatialaudio";
2021-12-20 02:12:08 +00:00
version = "0.3.0";
src = fetchFromGitHub {
owner = "videolabs";
repo = "libspatialaudio";
rev = version;
hash = "sha256-sPnQPD41AceXM4uGqWXMYhuQv0TUkA6TZP8ChxUFIoI=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ libmysofa zlib ];
2021-12-20 02:12:08 +00:00
meta = with lib; {
description =
"Ambisonic encoding / decoding and binauralization library in C++";
homepage = "https://github.com/videolabs/libspatialaudio";
2021-12-20 02:12:08 +00:00
license = licenses.lgpl21Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ krav ];
};
}