Unverified Commit 8deecc1e authored by Gergő Gutyina's avatar Gergő Gutyina Committed by GitHub
Browse files

treewide: remove meta = with lib; remainings (#489112)

parents b0d3f69e f93c6847
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@ buildNpmPackage rec {
    description = "AI agent CLI powered by Grok";
    homepage = "https://github.com/superagent-ai/grok-cli";
    license = lib.licenses.mit;
    maintainers = with lib; [ maintainers.madebydamo ];
    maintainers = with lib.maintainers; [ madebydamo ];
    mainProgram = "grok";
    platforms = lib.platforms.all;
  };
+4 −4
Original line number Diff line number Diff line
@@ -95,12 +95,12 @@ buildGoModule (finalAttrs: {
    version = "v${finalAttrs.version}";
  };

  meta = with lib; {
  meta = {
    description = "Self-hosted comment engine that embeds a statically built frontend";
    homepage = "https://remark42.com/";
    license = licenses.mit;
    license = lib.licenses.mit;
    mainProgram = "remark42";
    platforms = platforms.unix;
    maintainers = with maintainers; [ janhencic ];
    platforms = lib.platforms.unix;
    maintainers = with lib.maintainers; [ janhencic ];
  };
})
+3 −3
Original line number Diff line number Diff line
@@ -24,11 +24,11 @@ appimageTools.wrapType2 {
      --replace 'Icon=Steam Art Manager' 'Icon=steam-art-manager'
  '';

  meta = with lib; {
  meta = {
    description = "A tool to manage and change Steam library artwork";
    homepage = "https://github.com/Tormak9970/Steam-Art-Manager";
    license = licenses.gpl3Plus;
    maintainers = with maintainers; [ adam-tj ];
    license = lib.licenses.gpl3Plus;
    maintainers = with lib.maintainers; [ adam-tj ];
    platforms = [ "x86_64-linux" ];
    mainProgram = "steam-art-manager";
  };