{ alsa-lib, cmake, fetchFromGitHub, fontconfig, freeglut, freetype, lib, libX11, libXcomposite, libXcursor, libXext, libXinerama, libXrandr, lv2, mesa, pkg-config, stdenv }: stdenv.mkDerivation rec { pname = "gearmulator"; version = "1.4.1"; src = fetchFromGitHub { owner = "dsp56300"; repo = pname; tag = version; hash = "sha256-JnXTTtxF5jHPaU+d558JwlGo/QjKHtVuCqel5iaBBCk="; fetchSubmodules = true; }; nativeBuildInputs = [ cmake pkg-config ]; buildInputs = [ alsa-lib fontconfig freeglut freetype libX11 libXcomposite libXcursor libXext libXinerama libXrandr lv2 mesa ]; meta = { description = "Emulation of Motorola 56300 family DSP synths"; homepage = "https://github.com/dsp56300/gearmulator"; license = lib.licenses.gpl3; platforms = lib.platforms.all; }; }