27 lines
649 B
Nix
27 lines
649 B
Nix
{ stdenv, fetchFromGitHub, cmake, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libmysofa";
|
|
version = "0.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "hoene";
|
|
repo = "libmysofa";
|
|
rev = "v${version}";
|
|
sha256 = "14k8c31xh0v4r34h89ld440j9zri4plblmlhj5ddhdmzqmh4lr9f";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ zlib ];
|
|
|
|
cmakeFlags = [ "-DBUILD_TESTS=OFF" ];
|
|
|
|
meta = with stdenv.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 ];
|
|
};
|
|
}
|