evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / x4 / x42-gmsynth / package.nix
blob1d31211ec80d61633ae4947e7e3a7fab954836c4
1 { lib, stdenv, fetchFromGitHub, pkg-config, glib, lv2 }:
3 stdenv.mkDerivation rec {
4   pname = "x42-gmsynth";
5   version = "0.6.0";
7   src = fetchFromGitHub {
8     owner = "x42";
9     repo = "gmsynth.lv2";
10     rev = "v${version}";
11     hash = "sha256-onZoaQVAGH/1d7jBRlN3ucx/3mTGUCxjvvt19GyprsY=";
12   };
14   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [ glib lv2 ];
17   makeFlags = [
18     "PREFIX=$(out)"
19   ];
21   enableParallelBuilding = true;
23   meta = with lib; {
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;
30   };