summary refs log tree commit diff
path: root/pkgs/applications/audio/munt
diff options
context:
space:
mode:
authorgnidorah <gnidorah@users.noreply.github.com>2020-10-08 08:58:41 +0300
committergnidorah <gnidorah@users.noreply.github.com>2020-10-08 08:58:41 +0300
commit5cd29482e43995db8761835dcf0c66933b342107 (patch)
treead52ed1254f7c99340cc4a1b2924ba7a843620e2 /pkgs/applications/audio/munt
parent84d74ae9c9cbed73274b8e4e00be14688ffc93fe (diff)
downloadnixpkgs-5cd29482e43995db8761835dcf0c66933b342107.tar
nixpkgs-5cd29482e43995db8761835dcf0c66933b342107.tar.gz
nixpkgs-5cd29482e43995db8761835dcf0c66933b342107.tar.bz2
nixpkgs-5cd29482e43995db8761835dcf0c66933b342107.tar.lz
nixpkgs-5cd29482e43995db8761835dcf0c66933b342107.tar.xz
nixpkgs-5cd29482e43995db8761835dcf0c66933b342107.tar.zst
nixpkgs-5cd29482e43995db8761835dcf0c66933b342107.zip
munt: 2.4.0 -> 2.4.1
Diffstat (limited to 'pkgs/applications/audio/munt')
-rw-r--r--pkgs/applications/audio/munt/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/audio/munt/default.nix b/pkgs/applications/audio/munt/default.nix
index bf9710fb17e..2e072efe799 100644
--- a/pkgs/applications/audio/munt/default.nix
+++ b/pkgs/applications/audio/munt/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, mkDerivation, fetchFromGitHub, cmake, qtbase, alsaLib, makeDesktopItem }:
+{ stdenv, mkDerivation, fetchFromGitHub, cmake, qtbase, alsaLib, makeDesktopItem, libjack2 }:
 
 let
   desktopItem = makeDesktopItem rec {
@@ -9,14 +9,14 @@ let
     categories = "Audio;AudioVideo;";
   };
 in mkDerivation rec {
-  version = "2.4.0";
+  version = "2.4.1";
   pname = "munt";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
     rev = with stdenv.lib.versions; "libmt32emu_${major version}_${minor version}_${patch version}";
-    sha256 = "0521i7js5imlsxj6n7181w5szfjikam0k4vq1d2ilkqgcwrkg6ln";
+    sha256 = "0bszhkbz24hhx32f973l6h5lkyn4lxhqrckiwmv765d1sba8n5bk";
   };
 
   postInstall = ''
@@ -26,7 +26,7 @@ in mkDerivation rec {
   dontFixCmake = true;
 
   nativeBuildInputs = [ cmake ];
-  buildInputs = [ qtbase alsaLib ];
+  buildInputs = [ qtbase alsaLib libjack2 ];
 
   meta = with stdenv.lib; {
     description = "Multi-platform software synthesiser emulating Roland MT-32, CM-32L, CM-64 and LAPC-I devices";