summary refs log tree commit diff
path: root/pkgs/applications/audio/munt
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-02-01 13:26:43 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-02-01 17:44:44 -0300
commit58e2348eaf0403b88bbb2654a62de4c1894d4b1d (patch)
tree1d23fa132df20a47391d546d0a327b8337e6b3cf /pkgs/applications/audio/munt
parent8bb7bec755775fd086d8dfe3ddbc128913e8dffa (diff)
munt: remove
Munt is a monorepo, and it uses multiple directories for their various
subprojects. While there is an attempt to unified release tags for future
releases, for now we will rely on this current state of things and release each
useful program "independently".

This specific patch is just for cleanup purposes.
Diffstat (limited to 'pkgs/applications/audio/munt')
-rw-r--r--pkgs/applications/audio/munt/default.nix52
1 files changed, 0 insertions, 52 deletions
diff --git a/pkgs/applications/audio/munt/default.nix b/pkgs/applications/audio/munt/default.nix
deleted file mode 100644
index 6a308ba74c43a..0000000000000
--- a/pkgs/applications/audio/munt/default.nix
+++ /dev/null
@@ -1,52 +0,0 @@
-{ lib
-, stdenv
-, mkDerivation
-, fetchFromGitHub
-, alsa-lib
-, cmake
-, glib
-, pkg-config
-, qtbase
-, withJack ? stdenv.hostPlatform.isUnix, jack
-}:
-
-mkDerivation rec {
-  pname = "munt";
-  version = "2.5.3";
-
-  src = fetchFromGitHub {
-    owner = pname;
-    repo = pname;
-    rev = "libmt32emu_${lib.replaceChars [ "." ] [ "_" ] version}";
-    hash = "sha256-n5VV5Swh1tOVQGT3urEKl64A/w7cY95/0y5wC5ZuLm4=";
-  };
-
-  dontFixCmake = true;
-
-  nativeBuildInputs = [
-    cmake
-    pkg-config
-  ];
-
-  buildInputs = [
-    glib
-    qtbase
-  ]
-  ++ lib.optional stdenv.hostPlatform.isLinux alsa-lib
-  ++ lib.optional withJack jack;
-
-  postInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
-    mkdir $out/Applications
-    mv $out/bin/${meta.mainProgram}.app $out/Applications/
-    ln -s $out/{Applications/${meta.mainProgram}.app/Contents/MacOS,bin}/${meta.mainProgram}
-  '';
-
-  meta = with lib; {
-    homepage = "http://munt.sourceforge.net/";
-    description = "An emulator of Roland MT-32, CM-32L, CM-64 and LAPC-I devices";
-    license = with licenses; [ lgpl21 gpl3 ];
-    maintainers = with maintainers; [ OPNA2608 ];
-    platforms = platforms.all;
-    mainProgram = "mt32emu-qt";
-  };
-}