summary refs log tree commit diff
path: root/pkgs/applications/audio/fmit
diff options
context:
space:
mode:
authorTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-08-13 22:42:33 +0200
committerTobias Geerinckx-Rice <tobias.geerinckx.rice@gmail.com>2015-08-14 03:07:09 +0200
commit0294f71f1fd84714f41144f3a2c2c9292ded1679 (patch)
tree6ab7feacf059854a0013a1892a1e3ad811afeaad /pkgs/applications/audio/fmit
parent273fb91b49f929b1dc8fbd584f7944df080282df (diff)
downloadnixpkgs-0294f71f1fd84714f41144f3a2c2c9292ded1679.tar
nixpkgs-0294f71f1fd84714f41144f3a2c2c9292ded1679.tar.gz
nixpkgs-0294f71f1fd84714f41144f3a2c2c9292ded1679.tar.bz2
nixpkgs-0294f71f1fd84714f41144f3a2c2c9292ded1679.tar.lz
nixpkgs-0294f71f1fd84714f41144f3a2c2c9292ded1679.tar.xz
nixpkgs-0294f71f1fd84714f41144f3a2c2c9292ded1679.tar.zst
nixpkgs-0294f71f1fd84714f41144f3a2c2c9292ded1679.zip
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
Diffstat (limited to 'pkgs/applications/audio/fmit')
-rw-r--r--pkgs/applications/audio/fmit/default.nix8
1 files changed, 2 insertions, 6 deletions
diff --git a/pkgs/applications/audio/fmit/default.nix b/pkgs/applications/audio/fmit/default.nix
index f2328410be8..84ec955de3f 100644
--- a/pkgs/applications/audio/fmit/default.nix
+++ b/pkgs/applications/audio/fmit/default.nix
@@ -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