about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorgnidorah <gnidorah@users.noreply.github.com>2020-06-15 20:51:03 +0300
committerGitHub <noreply@github.com>2020-06-15 13:51:03 -0400
commite8a39c8acf2ecd8ee7be39f8e171ee7b0505425e (patch)
treec943a75a4f74d3237f16bfaa57b668ee9d3a22c9 /pkgs
parentac897afeb320a662c4bf5d5f6ff672f6aafbd957 (diff)
downloadnixlib-e8a39c8acf2ecd8ee7be39f8e171ee7b0505425e.tar
nixlib-e8a39c8acf2ecd8ee7be39f8e171ee7b0505425e.tar.gz
nixlib-e8a39c8acf2ecd8ee7be39f8e171ee7b0505425e.tar.bz2
nixlib-e8a39c8acf2ecd8ee7be39f8e171ee7b0505425e.tar.lz
nixlib-e8a39c8acf2ecd8ee7be39f8e171ee7b0505425e.tar.xz
nixlib-e8a39c8acf2ecd8ee7be39f8e171ee7b0505425e.tar.zst
nixlib-e8a39c8acf2ecd8ee7be39f8e171ee7b0505425e.zip
munt: 2.3.0 -> 2.4.0 (#89008)
Co-authored-by: Dmitry Kalinkin <dmitry.kalinkin@gmail.com>
Diffstat (limited to 'pkgs')
-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 c9a1e9bea808..bf9710fb17ee 100644
--- a/pkgs/applications/audio/munt/default.nix
+++ b/pkgs/applications/audio/munt/default.nix
@@ -9,14 +9,14 @@ let
     categories = "Audio;AudioVideo;";
   };
 in mkDerivation rec {
-  version = "2.3.0";
+  version = "2.4.0";
   pname = "munt";
 
   src = fetchFromGitHub {
     owner = pname;
     repo = pname;
-    rev = with stdenv.lib.versions; "${pname}_${major version}_${minor version}_${patch version}";
-    sha256 = "0fjhshs4w942rlfksalalqshflbq83pyz1z0hcq53falh9v54cyw";
+    rev = with stdenv.lib.versions; "libmt32emu_${major version}_${minor version}_${patch version}";
+    sha256 = "0521i7js5imlsxj6n7181w5szfjikam0k4vq1d2ilkqgcwrkg6ln";
   };
 
   postInstall = ''
@@ -31,7 +31,7 @@ in mkDerivation rec {
   meta = with stdenv.lib; {
     description = "Multi-platform software synthesiser emulating Roland MT-32, CM-32L, CM-64 and LAPC-I devices";
     homepage = "http://munt.sourceforge.net/";
-    license = licenses.gpl2;
+    license = with licenses; [ lgpl21 gpl3 ];
     platforms = platforms.linux;
     maintainers = with maintainers; [ gnidorah ];
   };