summary refs log tree commit diff
path: root/pkgs/applications/audio/fmit
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2019-08-14 10:54:19 -0700
committerJonathan Ringer <jonringer117@gmail.com>2019-08-14 10:58:48 -0700
commit6cf9f6afa5e3f9ddb401796a57dfc3cecc1f8368 (patch)
treeceb3516a005e5805094b45bbd2e48b2a56cdcf95 /pkgs/applications/audio/fmit
parent29851a69d3f54a5c76ecf60e80a4382a609b1cc6 (diff)
downloadnixpkgs-6cf9f6afa5e3f9ddb401796a57dfc3cecc1f8368.tar
nixpkgs-6cf9f6afa5e3f9ddb401796a57dfc3cecc1f8368.tar.gz
nixpkgs-6cf9f6afa5e3f9ddb401796a57dfc3cecc1f8368.tar.bz2
nixpkgs-6cf9f6afa5e3f9ddb401796a57dfc3cecc1f8368.tar.lz
nixpkgs-6cf9f6afa5e3f9ddb401796a57dfc3cecc1f8368.tar.xz
nixpkgs-6cf9f6afa5e3f9ddb401796a57dfc3cecc1f8368.tar.zst
nixpkgs-6cf9f6afa5e3f9ddb401796a57dfc3cecc1f8368.zip
fmit: 1.1.14 -> 1.2.6
Diffstat (limited to 'pkgs/applications/audio/fmit')
-rw-r--r--pkgs/applications/audio/fmit/default.nix16
1 files changed, 8 insertions, 8 deletions
diff --git a/pkgs/applications/audio/fmit/default.nix b/pkgs/applications/audio/fmit/default.nix
index a61f7dc0a90..680694aa403 100644
--- a/pkgs/applications/audio/fmit/default.nix
+++ b/pkgs/applications/audio/fmit/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, fftw, qtbase, qtmultimedia, qmake
+{ stdenv, mkDerivation, fetchFromGitHub, fftw, qtbase, qtmultimedia, qmake, itstool, wrapQtAppsHook
 , alsaSupport ? true, alsaLib ? null
 , jackSupport ? false, libjack2 ? null
 , portaudioSupport ? false, portaudio ? null }:
@@ -9,18 +9,18 @@ assert portaudioSupport -> portaudio != null;
 
 with stdenv.lib;
 
-stdenv.mkDerivation rec {
-  name = "fmit-${version}";
-  version = "1.1.14";
+mkDerivation rec {
+  pname = "fmit";
+  version = "1.2.6";
 
   src = fetchFromGitHub {
-    sha256 = "18gvl8smcnigzldy1acs5h8rscf287b39xi4y2cl5armqbj0y38x";
-    rev = "v${version}";
-    repo = "fmit";
     owner = "gillesdegottex";
+    repo = "fmit";
+    rev = "v${version}";
+    sha256 = "03nzkig5mw2rqwhwmg0qvc5cnk9bwh2wp13jh0mdrr935w0587mz";
   };
 
-  nativeBuildInputs = [ qmake ];
+  nativeBuildInputs = [ qmake itstool wrapQtAppsHook ];
   buildInputs = [ fftw qtbase qtmultimedia ]
     ++ optionals alsaSupport [ alsaLib ]
     ++ optionals jackSupport [ libjack2 ]