Commit 8a83a53b authored by OPNA2608's avatar OPNA2608
Browse files

fmtoy: Reformat, drop meta-wide with lib

parent 3306e56e
Loading
Loading
Loading
Loading
+14 −13
Original line number Diff line number Diff line
{ stdenv
, lib
, fetchFromGitHub
, unstableGitUpdater
, alsa-lib
, cmake
, libjack2
, pkg-config
, zlib
{
  stdenv,
  lib,
  fetchFromGitHub,
  unstableGitUpdater,
  alsa-lib,
  cmake,
  libjack2,
  pkg-config,
  zlib,
}:

stdenv.mkDerivation (finalAttrs: {
@@ -60,12 +61,12 @@ stdenv.mkDerivation (finalAttrs: {
    updateScript = unstableGitUpdater { };
  };

  meta = with lib; {
  meta = {
    description = "FM synthesiser based on emulated Yamaha YM chips (OPL, OPM and OPN series)";
    homepage = "https://github.com/vampirefrog/fmtoy";
    license = licenses.gpl3Only;
    license = lib.licenses.gpl3Only;
    mainProgram = "fmtoy_jack";
    maintainers = with maintainers; [ OPNA2608 ];
    platforms = platforms.linux;
    maintainers = with lib.maintainers; [ OPNA2608 ];
    platforms = lib.platforms.linux;
  };
})