Unverified Commit 4816eb0b authored by Yohann Boniface's avatar Yohann Boniface Committed by GitHub
Browse files

various: add maintainer iedame (#455123)

parents a75e4575 6cd43ab2
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -54,6 +54,7 @@ stdenv.mkDerivation rec {
    maintainers = with maintainers; [
      luz
      thoughtpolice
      iedame
    ];
    license = licenses.gpl3Plus;
    platforms = platforms.linux;
+1 −0
Original line number Diff line number Diff line
@@ -93,6 +93,7 @@ stdenv.mkDerivation {
    maintainers = with lib.maintainers; [
      joelburget
      khaneliman
      iedame
    ];
    sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
    license = lib.licenses.unfree;
+1 −0
Original line number Diff line number Diff line
@@ -35,6 +35,7 @@ let
      timstott
      sebtm
      bdd
      iedame
    ];
    platforms = [
      "x86_64-linux"
+7 −4
Original line number Diff line number Diff line
@@ -25,12 +25,15 @@ stdenvNoCC.mkDerivation (finalAttrs: {
    runHook postInstall
  '';

  meta = with lib; {
  meta = {
    description = "Uninstall unwanted apps";
    homepage = "https://freemacsoft.net/appcleaner";
    license = licenses.unfree;
    license = lib.licenses.unfree;
    sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
    maintainers = with maintainers; [ emilytrau ];
    platforms = platforms.darwin;
    maintainers = with lib.maintainers; [
      emilytrau
      iedame
    ];
    platforms = lib.platforms.darwin;
  };
})
+4 −1
Original line number Diff line number Diff line
@@ -247,7 +247,10 @@ stdenv.mkDerivation rec {
    '';
    license = lib.licenses.agpl3Plus;
    platforms = lib.platforms.all;
    maintainers = [ lib.maintainers.tobim ];
    maintainers = with lib.maintainers; [
      tobim
      iedame
    ];
    mainProgram = "gs";
  };
}
Loading