1 { lib, stdenv, fetchFromGitHub, pkg-config, glib, lv2 }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
11 hash = "sha256-onZoaQVAGH/1d7jBRlN3ucx/3mTGUCxjvvt19GyprsY=";
14 nativeBuildInputs = [ pkg-config ];
15 buildInputs = [ glib lv2 ];
21 enableParallelBuilding = true;
24 broken = (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64);
25 description = "Chris Colins' General User soundfont player LV2 plugin";
26 homepage = "https://x42-plugins.com/x42/x42-gmsynth";
27 maintainers = with maintainers; [ orivej ];
28 license = licenses.gpl2Plus;
29 platforms = platforms.linux;