Merge pull request #216803 from joshniemela/master

julia_19: 1.9.0-beta2 -> 1.9.0-beta4
This commit is contained in:
Nick Cao 2023-02-18 11:09:36 +08:00 committed by GitHub
commit 63d3f5aec3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 3 deletions

View file

@ -7293,6 +7293,12 @@
github = "jorsn"; github = "jorsn";
githubId = 4646725; githubId = 4646725;
}; };
joshniemela = {
name = "Joshua Niemelä";
email = "josh@jniemela.dk";
github = "joshniemela";
githubId = 88747315;
};
joshuafern = { joshuafern = {
name = "Joshua Fern"; name = "Joshua Fern";
email = "joshuafern@protonmail.com"; email = "joshuafern@protonmail.com";

View file

@ -14,11 +14,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "julia"; pname = "julia";
version = "1.9.0-beta2"; version = "1.9.0-beta4";
src = fetchurl { src = fetchurl {
url = "https://github.com/JuliaLang/julia/releases/download/v${version}/julia-${version}-full.tar.gz"; url = "https://github.com/JuliaLang/julia/releases/download/v${version}/julia-${version}-full.tar.gz";
hash = "sha256-LTQp5vBMOSlwThYpSIv/UNJ9eIU+WId/XWGFxsrQEzs="; hash = "sha256-Ipfps2wxPV30nbOxDZ0K39jFB1lNz16aXgFhIKBOquM=";
}; };
patches = [ patches = [
@ -88,7 +88,7 @@ stdenv.mkDerivation rec {
description = "High-level performance-oriented dynamical language for technical computing"; description = "High-level performance-oriented dynamical language for technical computing";
homepage = "https://julialang.org/"; homepage = "https://julialang.org/";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ nickcao ]; maintainers = with maintainers; [ nickcao joshniemela ];
platforms = [ "x86_64-linux" "aarch64-linux" ]; platforms = [ "x86_64-linux" "aarch64-linux" ];
}; };
} }