3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #224358 from SomeoneSerge/team-list-cuda

team-list: add cuda team
This commit is contained in:
Ryan Lahfa 2023-05-05 16:44:05 +02:00 committed by GitHub
commit 588058a0af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 0 deletions

View file

@ -149,6 +149,15 @@ with lib.maintainers; {
enableFeatureFreezePing = true;
};
cuda = {
members = [
SomeoneSerge
];
scope = "Maintain CUDA-enabled packages";
shortName = "Cuda";
githubTeams = [ "cuda-maintainers" ];
};
darwin = {
members = [
toonn

View file

@ -335,6 +335,7 @@ backendStdenv.mkDerivation rec {
homepage = "https://developer.nvidia.com/cuda-toolkit";
platforms = [ "x86_64-linux" ];
license = licenses.unfree;
maintainers = teams.cuda.members;
};
}

View file

@ -60,6 +60,7 @@ backendStdenv.mkDerivation {
meta = {
description = attrs.name;
license = lib.licenses.unfree;
maintainers = lib.teams.cuda.members;
platforms = lib.optionals (lib.hasAttr arch attrs) [ "x86_64-linux" ];
};
}