Unverified Commit d69f2a56 authored by Acid Bong's avatar Acid Bong
Browse files

twemoji-color-font: remove `with lib`

parent 1b60052b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@ stdenv.mkDerivation (finalAttrs: {
    runHook postInstall
  '';

  meta = with lib; {
  meta = {
    description = "Color emoji SVGinOT font using Twitter Unicode 10 emoji with diversity and country flags";
    longDescription = ''
      A color and B&W emoji SVGinOT font built from the Twitter Emoji for
@@ -37,10 +37,10 @@ stdenv.mkDerivation (finalAttrs: {
    '';
    homepage = "https://github.com/eosrei/twemoji-color-font";
    downloadPage = "https://github.com/eosrei/twemoji-color-font/releases";
    license = with licenses; [
    license = with lib.licenses; [
      cc-by-40
      mit
    ];
    maintainers = [ maintainers.fgaz ];
    maintainers = [ lib.maintainers.fgaz ];
  };
})