936b628018
Fixes CVE-2021-3756. https://huntr.dev/bounties/7ca8d9ea-e2a6-4294-af28-70260bb53bc1/
27 lines
672 B
Nix
27 lines
672 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libmysofa";
|
|
version = "1.2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hoene";
|
|
repo = "libmysofa";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-SCyeicZ+JkJU1x2X3efOvxUXT2qF2IiUsj+anLg5Lsg=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ zlib ];
|
|
|
|
cmakeFlags = [ "-DBUILD_TESTS=OFF" "-DCODE_COVERAGE=OFF" ];
|
|
|
|
meta = with lib; {
|
|
description = "Reader for AES SOFA files to get better HRTFs";
|
|
homepage = "https://github.com/hoene/libmysofa";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ jfrankenau ];
|
|
};
|
|
}
|