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
This commit is contained in:
Tobias Geerinckx-Rice 2015-08-13 22:42:33 +02:00
parent 273fb91b49
commit 0294f71f1f

View File

@ -7,12 +7,12 @@
assert alsaSupport -> alsaLib != null;
assert jackSupport -> libjack2 != null;
let version = "1.0.7"; in
let version = "1.0.8"; in
stdenv.mkDerivation {
name = "fmit-${version}";
src = fetchFromGitHub {
sha256 = "14dzrrxjskhqamhfqhzp6napvc1vyjxcc0v8id1iqzsfdn86xqm9";
sha256 = "04s7xcgmi5g58lirr48vf203n1jwdxf981x1p6ysbax24qwhs2kd";
rev = "v${version}";
repo = "fmit";
owner = "gillesdegottex";
@ -22,10 +22,6 @@ stdenv.mkDerivation {
++ stdenv.lib.optional alsaSupport [ alsaLib ]
++ stdenv.lib.optional jackSupport [ libjack2 ];
postPatch = ''
substituteInPlace fmit.pro --replace '$$FMITVERSIONGITPRO' '${version}'
'';
configurePhase = ''
mkdir build
cd build