diff --git a/pkgs/applications/audio/mmlgui/default.nix b/pkgs/by-name/mm/mmlgui/package.nix similarity index 93% rename from pkgs/applications/audio/mmlgui/default.nix rename to pkgs/by-name/mm/mmlgui/package.nix index 40ef6fa5ae23..de5ce783d116 100644 --- a/pkgs/applications/audio/mmlgui/default.nix +++ b/pkgs/by-name/mm/mmlgui/package.nix @@ -11,7 +11,15 @@ libxdmcp, cppunit, }: - +let + libvgm' = libvgm.override { + withAllEmulators = false; + emulators = [ + "_PRESET_SMD" + ]; + enableLibplayer = false; + }; +in stdenv.mkDerivation { pname = "mmlgui"; version = "210420-preview-unstable-2026-01-09"; @@ -52,7 +60,7 @@ stdenv.mkDerivation { buildInputs = [ glfw - libvgm + libvgm' ] ++ lib.optionals stdenv.hostPlatform.isLinux [ libx11 diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index eb3e10d2ce73..feb7ee73aa85 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -10099,16 +10099,6 @@ with pkgs; ocamlPackages = ocaml-ng.ocamlPackages_4_14; }; - mmlgui = callPackage ../applications/audio/mmlgui { - libvgm = libvgm.override { - withAllEmulators = false; - emulators = [ - "_PRESET_SMD" - ]; - enableLibplayer = false; - }; - }; - monotone = callPackage ../applications/version-management/monotone { lua = lua5; };