fmit: 1.0.7 -> 1.0.8

Updated mainly to remove the now unnecessary version patching.

Your moment of zen:
https://github.com/gillesdegottex/fmit/blob/HEAD/src/CustomInstrumentTunerForm.cpp#L1047

+2 -6
+2 -6
pkgs/applications/audio/fmit/default.nix
··· 7 7 assert alsaSupport -> alsaLib != null; 8 8 assert jackSupport -> libjack2 != null; 9 9 10 - let version = "1.0.7"; in 10 + let version = "1.0.8"; in 11 11 stdenv.mkDerivation { 12 12 name = "fmit-${version}"; 13 13 14 14 src = fetchFromGitHub { 15 - sha256 = "14dzrrxjskhqamhfqhzp6napvc1vyjxcc0v8id1iqzsfdn86xqm9"; 15 + sha256 = "04s7xcgmi5g58lirr48vf203n1jwdxf981x1p6ysbax24qwhs2kd"; 16 16 rev = "v${version}"; 17 17 repo = "fmit"; 18 18 owner = "gillesdegottex"; ··· 21 21 buildInputs = [ fftw freeglut qt5Full ] 22 22 ++ stdenv.lib.optional alsaSupport [ alsaLib ] 23 23 ++ stdenv.lib.optional jackSupport [ libjack2 ]; 24 - 25 - postPatch = '' 26 - substituteInPlace fmit.pro --replace '$$FMITVERSIONGITPRO' '${version}' 27 - ''; 28 24 29 25 configurePhase = '' 30 26 mkdir build