mmlgui: migrate to by-name (#492532)

This commit is contained in:
Yohann Boniface
2026-03-01 20:34:42 +00:00
committed by GitHub
2 changed files with 10 additions and 12 deletions
@@ -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
-10
View File
@@ -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;
};