tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
mysql-shell_8: 8.4.3 -> 8.4.4
Aaron Jheng
1 year ago
cf6620ee
0aa47554
+5
-4
2 changed files
expand all
collapse all
unified
split
pkgs
development
tools
mysql-shell
8.nix
top-level
all-packages.nix
+4
-4
pkgs/development/tools/mysql-shell/8.nix
···
38
38
pyyaml
39
39
];
40
40
41
41
-
mysqlShellVersion = "8.4.3";
42
42
-
mysqlServerVersion = "8.4.3";
41
41
+
mysqlShellVersion = "8.4.4";
42
42
+
mysqlServerVersion = "8.4.4";
43
43
in
44
44
stdenv.mkDerivation (finalAttrs: {
45
45
pname = "mysql-shell";
···
48
48
srcs = [
49
49
(fetchurl {
50
50
url = "https://dev.mysql.com/get/Downloads/MySQL-${lib.versions.majorMinor mysqlServerVersion}/mysql-${mysqlServerVersion}.tar.gz";
51
51
-
hash = "sha256-eslWTEeAIvcwBf+Ju7QPZ7OB/AbVUYQWvf/sdeYluBg=";
51
51
+
hash = "sha256-+ykO90iJRDQIUknDG8pSrHGFMSREarIYuzvFAr8AgqU=";
52
52
})
53
53
(fetchurl {
54
54
url = "https://dev.mysql.com/get/Downloads/MySQL-Shell/mysql-shell-${finalAttrs.version}-src.tar.gz";
55
55
-
hash = "sha256-rO+cAfQzUobMrTLGHRbaXsG+vMcjVTtDoZwmyok+dS4=";
55
55
+
hash = "sha256-wl57vU3YbWvtmzew801k8WHohY6Fjy59Uyy2pdYaHuw=";
56
56
})
57
57
];
58
58
+1
pkgs/top-level/all-packages.nix
···
506
506
antlr = antlr4_10;
507
507
icu = icu73;
508
508
protobuf = protobuf_24;
509
509
+
stdenv = if stdenv.hostPlatform.isDarwin then llvmPackages_18.stdenv else stdenv;
509
510
};
510
511
})
511
512
mysql-shell_8