Unverified Commit 70019cd6 authored by superherointj's avatar superherointj Committed by GitHub
Browse files

Merge pull request #327960 from atorres1985-contrib/swift-remove-dtzwill

Swift: remove dtzwill and create team
parents e1413e3c 2709408a
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -951,6 +951,17 @@ with lib.maintainers;
    shortName = "StridTech";
  };

  swift = {
    members = [
      dduan
      stephank
      trepetti
      trundle
    ];
    scope = "Maintain Swift compiler suite for NixOS.";
    shortName = "Swift";
  };

  systemd = {
    members = [ ];
    githubTeams = [ "systemd" ];
+1 −1
Original line number Diff line number Diff line
@@ -702,7 +702,7 @@ in stdenv.mkDerivation {
  meta = {
    description = "Swift Programming Language";
    homepage = "https://github.com/apple/swift";
    maintainers = with lib.maintainers; [ dtzWill trepetti dduan trundle stephank ];
    maintainers = lib.teams.swift.members;
    license = lib.licenses.asl20;
    platforms = with lib.platforms; linux ++ darwin;
    # Swift doesn't support 32-bit Linux, unknown on other platforms.
+2 −0
Original line number Diff line number Diff line
@@ -108,6 +108,8 @@ let

    swift-format = callPackage ./swift-format { };

    swiftpm2nix = callPackage ./swiftpm2nix { };

  };

in self
+1 −1
Original line number Diff line number Diff line
@@ -67,6 +67,6 @@ in stdenv.mkDerivation {
    homepage = "https://github.com/apple/swift-corelibs-foundation";
    platforms = lib.platforms.linux;
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ dtzWill trepetti dduan trundle stephank ];
    maintainers = lib.teams.swift.members;
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -37,6 +37,6 @@ in stdenv.mkDerivation {
    homepage = "https://github.com/apple/swift-corelibs-libdispatch";
    platforms = lib.platforms.linux;
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ cmm dtzWill trepetti dduan trundle stephank ];
    maintainers = lib.teams.swift.members ++ (with lib.maintainers; [ cmm ]);
  };
}
Loading