Merge pull request #275911 from codedownio/julia-withpackages-thomasjm-maintainer

julia.withPackages: add thomasjm as maintainer
This commit is contained in:
Nick Cao 2023-12-22 09:47:37 -05:00 committed by GitHub
commit 5c55482a29
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 5 deletions

View file

@ -65,7 +65,7 @@ stdenv.mkDerivation rec {
homepage = "https://julialang.org";
# Bundled and linked with various GPL code, although Julia itself is MIT.
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ raskin ];
maintainers = with lib.maintainers; [ raskin thomasjm ];
platforms = [ "x86_64-linux" ];
mainProgram = "julia";
};

View file

@ -89,7 +89,7 @@ stdenv.mkDerivation rec {
homepage = "https://julialang.org";
# Bundled and linked with various GPL code, although Julia itself is MIT.
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ raskin nickcao wegank ];
maintainers = with lib.maintainers; [ raskin nickcao wegank thomasjm ];
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
mainProgram = "julia";
};

View file

@ -80,7 +80,7 @@ stdenv.mkDerivation rec {
description = "High-level performance-oriented dynamical language for technical computing";
homepage = "https://julialang.org/";
license = licenses.mit;
maintainers = with maintainers; [ nickcao ];
maintainers = with maintainers; [ nickcao thomasjm ];
platforms = [ "x86_64-linux" "aarch64-linux" ];
};
}

View file

@ -97,7 +97,7 @@ stdenv.mkDerivation rec {
homepage = "https://julialang.org";
# Bundled and linked with various GPL code, although Julia itself is MIT.
license = lib.licenses.gpl2Plus;
maintainers = with lib.maintainers; [ raskin nickcao wegank ];
maintainers = with lib.maintainers; [ raskin nickcao wegank thomasjm ];
platforms = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
mainProgram = "julia";
};

View file

@ -79,7 +79,7 @@ stdenv.mkDerivation rec {
description = "High-level performance-oriented dynamical language for technical computing";
homepage = "https://julialang.org/";
license = licenses.mit;
maintainers = with maintainers; [ nickcao joshniemela ];
maintainers = with maintainers; [ nickcao joshniemela thomasjm ];
platforms = [ "x86_64-linux" "aarch64-linux" ];
};
}

View file

@ -170,6 +170,7 @@ runCommand "julia-${julia.version}-env" {
inherit julia;
inherit juliaWrapped;
meta = julia.meta;
# Expose the steps we used along the way in case the user wants to use them, for example to build
# expressions and build them separately to avoid IFD.