Unverified Commit e29f67f8 authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

mmlgui: migrate to by-name (#492532)

parents 5cbcdec9 738d9d4b
Loading
Loading
Loading
Loading
+10 −2
Original line number Diff line number Diff line
@@ -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
+0 −10
Original line number Diff line number Diff line
@@ -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;
  };