Unverified Commit 0b4bb3b3 authored by awwpotato's avatar awwpotato
Browse files

grc: remove with lib

parent 178bc185
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -39,20 +39,20 @@ python3Packages.buildPythonApplication rec {
    runHook postInstall
  '';

  meta = with lib; {
  meta = {
    homepage = "http://kassiopeia.juls.savba.sk/~garabik/software/grc.html";
    description = "Generic text colouriser";
    longDescription = ''
      Generic Colouriser is yet another colouriser (written in Python) for
      beautifying your logfiles or output of commands.
    '';
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [
    license = lib.licenses.gpl2Plus;
    maintainers = with lib.maintainers; [
      azahi
      lovek323
      peterhoeg
    ];
    platforms = platforms.unix;
    platforms = lib.platforms.unix;
    mainProgram = "grc";
  };
}