1 { lib, stdenv, fetchFromGitHub, cmake, zlib }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 sha256 = "sha256-QEfkeofsVxB9gyISL/P7bvnbcBuG7Q3A4UoAyQAXxgE=";
14 nativeBuildInputs = [ cmake ];
15 buildInputs = [ zlib ];
17 cmakeFlags = [ "-DBUILD_TESTS=OFF" "-DCODE_COVERAGE=OFF" ];
20 description = "Reader for AES SOFA files to get better HRTFs";
21 homepage = "https://github.com/hoene/libmysofa";
22 license = licenses.bsd3;
23 platforms = platforms.all;
24 maintainers = with maintainers; [ jfrankenau ];