csound: build with fluidsynth 2.x

csound has supported FluidSynth 2 since 6.13.0:
https://github.com/csound/csound/pull/1106

Since fluidsynth_1 has finally been broken by glib 2.70.0, so now is a
good opportunity to get rid of this dependency.

+1 -6
-3
pkgs/applications/audio/csound/default.nix
··· 14 14 15 15 stdenv.mkDerivation rec { 16 16 pname = "csound"; 17 - # When updating, please check if https://github.com/csound/csound/issues/1078 18 - # has been fixed in the new version so we can use the normal fluidsynth 19 - # version and remove fluidsynth 1.x from nixpkgs again. 20 17 version = "6.16.2"; 21 18 22 19 hardeningDisable = [ "format" ];
+1 -3
pkgs/top-level/all-packages.nix
··· 24004 24004 24005 24005 csa = callPackage ../applications/audio/csa { }; 24006 24006 24007 - csound = callPackage ../applications/audio/csound { 24008 - fluidsynth = fluidsynth_1; 24009 - }; 24007 + csound = callPackage ../applications/audio/csound { }; 24010 24008 24011 24009 csound-manual = callPackage ../applications/audio/csound/csound-manual { 24012 24010 python = python27;