Commit 3bc15ac9 authored by Stefan Frijters's avatar Stefan Frijters Committed by Emery Hemingway
Browse files

openttd-ttf: remove 'with lib'

parent 6f399eb3
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -46,12 +46,12 @@ stdenvNoCC.mkDerivation (finalAttrs: {
    runHook postInstall
  '';

  meta = with lib; {
  meta = {
    homepage = "https://github.com/zephyris/openttd-ttf";
    changelog = "https://github.com/zephyris/openttd-ttf/releases/tag/${finalAttrs.version}";
    description = "TrueType typefaces for text in a pixel art style, designed for use in OpenTTD";
    license = [ licenses.gpl2 ];
    platforms = platforms.all;
    maintainers = [ maintainers.sfrijters ];
    license = [ lib.licenses.gpl2 ];
    platforms = lib.platforms.all;
    maintainers = [ lib.maintainers.sfrijters ];
  };
})