Skip to content

Commit

Permalink
treewide: add lib.teams.swift.members to Swift suite
Browse files Browse the repository at this point in the history
  • Loading branch information
AndersonTorres committed Jul 17, 2024
1 parent df973d0 commit b7dbee5
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion pkgs/development/compilers/swift/compiler/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ in stdenv.mkDerivation {
meta = {
description = "Swift Programming Language";
homepage = "https://github.com/apple/swift";
maintainers = with lib.maintainers; [ trepetti dduan trundle stephank ];
maintainers = lib.teams.swift.members ++ (with lib.maintainers; [ trepetti dduan trundle stephank ]);
license = lib.licenses.asl20;
platforms = with lib.platforms; linux ++ darwin;
# Swift doesn't support 32-bit Linux, unknown on other platforms.
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/compilers/swift/foundation/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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; [ trepetti dduan trundle stephank ];
maintainers = lib.teams.swift.members ++ (with lib.maintainers; [ trepetti dduan trundle stephank ]);
};
}
2 changes: 1 addition & 1 deletion pkgs/development/compilers/swift/libdispatch/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 trepetti dduan trundle stephank ];
maintainers = lib.teams.swift.members ++ (with lib.maintainers; [ cmm trepetti dduan trundle stephank ]);
};
}
2 changes: 1 addition & 1 deletion pkgs/development/compilers/swift/sourcekit-lsp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@ stdenv.mkDerivation {
homepage = "https://github.com/apple/sourcekit-lsp";
platforms = with lib.platforms; linux ++ darwin;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ trepetti dduan trundle stephank ];
maintainers = lib.teams.swift.members ++ (with lib.maintainers; [ trepetti dduan trundle stephank ]);
};
}
2 changes: 1 addition & 1 deletion pkgs/development/compilers/swift/swift-docc/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,6 @@ stdenv.mkDerivation {
homepage = "https://github.com/apple/swift-docc";
platforms = with lib.platforms; linux ++ darwin;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ trepetti dduan trundle stephank ];
maintainers = lib.teams.swift.members ++ (with lib.maintainers; [ trepetti dduan trundle stephank ]);
};
}
2 changes: 1 addition & 1 deletion pkgs/development/compilers/swift/swift-driver/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,6 @@ stdenv.mkDerivation {
homepage = "https://github.com/apple/swift-driver";
platforms = with lib.platforms; linux ++ darwin;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ trepetti dduan trundle stephank ];
maintainers = lib.teams.swift.members ++ (with lib.maintainers; [ trepetti dduan trundle stephank ]);
};
}
2 changes: 1 addition & 1 deletion pkgs/development/compilers/swift/swift-format/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ stdenv.mkDerivation {
homepage = "https://github.com/apple/swift-format";
platforms = with lib.platforms; linux ++ darwin;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ trepetti dduan trundle stephank ];
maintainers = lib.teams.swift.members ++ (with lib.maintainers; [ trepetti dduan trundle stephank ]);
mainProgram = "swift-format";
};
}
2 changes: 1 addition & 1 deletion pkgs/development/compilers/swift/swiftpm/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,6 @@ in stdenv.mkDerivation (commonAttrs // {
homepage = "https://github.com/apple/swift-package-manager";
platforms = with lib.platforms; linux ++ darwin;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ trepetti dduan trundle stephank ];
maintainers = lib.teams.swift.members ++ (with lib.maintainers; [ trepetti dduan trundle stephank ]);
};
})
2 changes: 1 addition & 1 deletion pkgs/development/compilers/swift/xctest/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ in stdenv.mkDerivation {
homepage = "https://github.com/apple/swift-corelibs-xctest";
platforms = lib.platforms.all;
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ trepetti dduan trundle stephank ];
maintainers = lib.teams.swift.members ++ (with liby.maintainers; [ trepetti dduan trundle stephank ]);
};
}
2 changes: 1 addition & 1 deletion pkgs/development/tools/swiftpm2nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ stdenv.mkDerivation {
meta = {
description = "Generate a Nix expression to fetch swiftpm dependencies";
mainProgram = "swiftpm2nix";
maintainers = with lib.maintainers; [ trepetti dduan trundle stephank ];
maintainers = lib.teams.swift.members ++ (with lib.maintainers; [ trepetti dduan trundle stephank ]);
platforms = lib.platforms.all;
};
}

0 comments on commit b7dbee5

Please sign in to comment.