Commit 4898b600 authored by OPNA2608's avatar OPNA2608
Browse files

vgmtools: Drop meta-wide "with lib"

parent f57ac16c
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -37,11 +37,11 @@ stdenv.mkDerivation {
    url = "https://github.com/vgmrips/vgmtools.git";
  };

  meta = with lib; {
  meta = {
    homepage = "https://github.com/vgmrips/vgmtools";
    description = "Collection of tools for the VGM file format";
    license = licenses.gpl2Only; # Not clarified whether Only or Plus
    maintainers = with maintainers; [ OPNA2608 ];
    platforms = platforms.all;
    license = lib.licenses.gpl2Only; # Not clarified whether Only or Plus
    maintainers = with lib.maintainers; [ OPNA2608 ];
    platforms = lib.platforms.all;
  };
}