Merge pull request #327960 from atorres1985-contrib/swift-remove-dtzwill
Swift: remove dtzwill and create team
This commit is contained in:
commit
70019cd644
@ -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" ];
|
||||
|
@ -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.
|
||||
|
@ -108,6 +108,8 @@ let
|
||||
|
||||
swift-format = callPackage ./swift-format { };
|
||||
|
||||
swiftpm2nix = callPackage ./swiftpm2nix { };
|
||||
|
||||
};
|
||||
|
||||
in self
|
||||
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
@ -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 ]);
|
||||
};
|
||||
}
|
||||
|
@ -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; [ dtzWill trepetti dduan trundle stephank ];
|
||||
maintainers = lib.teams.swift.members;
|
||||
};
|
||||
}
|
||||
|
@ -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; [ dtzWill trepetti dduan trundle stephank ];
|
||||
maintainers = lib.teams.swift.members;
|
||||
};
|
||||
}
|
||||
|
@ -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; [ dtzWill trepetti dduan trundle stephank ];
|
||||
maintainers = lib.teams.swift.members;
|
||||
};
|
||||
}
|
||||
|
@ -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; [ dtzWill trepetti dduan trundle stephank ];
|
||||
maintainers = lib.teams.swift.members;
|
||||
mainProgram = "swift-format";
|
||||
};
|
||||
}
|
||||
|
@ -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; [ dtzWill trepetti dduan trundle stephank ];
|
||||
maintainers = lib.teams.swift.members;
|
||||
};
|
||||
})
|
||||
|
@ -20,7 +20,7 @@ stdenv.mkDerivation {
|
||||
meta = {
|
||||
description = "Generate a Nix expression to fetch swiftpm dependencies";
|
||||
mainProgram = "swiftpm2nix";
|
||||
maintainers = with lib.maintainers; [ dtzWill trepetti dduan trundle stephank ];
|
||||
maintainers = lib.teams.swift.members;
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
@ -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; [ dtzWill trepetti dduan trundle stephank ];
|
||||
maintainers = lib.teams.swift.members;
|
||||
};
|
||||
}
|
||||
|
@ -16648,9 +16648,7 @@ with pkgs;
|
||||
svdtools = callPackage ../development/embedded/svdtools { };
|
||||
|
||||
swiftPackages = recurseIntoAttrs (callPackage ../development/compilers/swift { });
|
||||
inherit (swiftPackages) swift swiftpm sourcekit-lsp swift-format;
|
||||
|
||||
swiftpm2nix = callPackage ../development/tools/swiftpm2nix { };
|
||||
inherit (swiftPackages) swift swiftpm sourcekit-lsp swift-format swiftpm2nix;
|
||||
|
||||
swiProlog = callPackage ../development/compilers/swi-prolog {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
|
Loading…
Reference in New Issue
Block a user