58 Commits

Author SHA1 Message Date
Aaron Jheng
8c948a0d07 mysql-shell-innovation: alias to mysql-shell_9
Remove the separate innovation.nix derivation and point
mysql-shell-innovation to mysql-shell_9 instead.
2026-07-09 13:50:48 +08:00
Aaron Jheng
194e2e5e46 mysql-shell_9: 9.7.0 -> 9.7.1 2026-07-09 13:50:43 +08:00
Aaron Jheng
f051396756 mysql-shell_8: 8.4.9 -> 8.4.10 2026-07-09 13:50:38 +08:00
Aaron Jheng
5c8553d66b mysql-shell-innovation: fix build with libc++ 21 2026-05-24 20:29:11 +08:00
Aaron Jheng
8f85bca57f mysql-shell_9: fix build with libc++ 21 2026-05-24 20:29:11 +08:00
Aaron Jheng
70854d52a1 mysql-shell_8: fix build with clang 2026-05-24 20:29:11 +08:00
Aaron Jheng
710e70e215 mysql-shell_innovation: unpin stdenv 2026-05-09 01:57:50 +00:00
Aaron Jheng
b72b434f0b mysql-shell_9: unpin stdenv 2026-05-09 01:57:50 +00:00
Aaron Jheng
e8e00aa571 mysql-shell_8: unpin stdenv 2026-05-09 01:57:41 +00:00
Aaron Jheng
5009afabcd mysql-shell_9: init at 9.7.0 2026-04-22 14:20:19 +08:00
Aaron Jheng
b331db8a38 mysql-shell-innovation: 9.6.0 -> 9.7.0 2026-04-22 11:10:42 +08:00
Aaron Jheng
45969d9c68 mysql-shell_8: 8.4.8 -> 8.4.9 2026-04-22 10:07:23 +08:00
Aaron Jheng
bdd88971af mysql-shell-innovation: 9.4.0 -> 9.6.0 2026-01-24 10:12:01 +08:00
Aaron Jheng
a8e00acda7 mysql-shell: 8.4.6 -> 8.4.8 2026-01-24 09:53:50 +08:00
Peder Bergebakken Sundt
de8df20592 mysql-shell: 8.4.5 -> 8.4.6, mysql-shell-innovation: 9.3.0 -> 9.4.0 (#428008) 2025-08-26 18:11:34 +02:00
Wolfgang Walther
5a0711127c treewide: run nixfmt 1.0.0 2025-07-24 13:55:40 +02:00
Aaron Jheng
9ed1c81a3c mysql-shell-innovation: 9.3.0 -> 9.4.0 2025-07-24 18:02:39 +08:00
Aaron Jheng
8fb133a87f mysql-shell: 8.4.5 -> 8.4.6 2025-07-24 18:02:03 +08:00
Aaron Jheng
86f10e2a96 mysql-shell-innovation: 9.2.0 -> 9.3.0 2025-04-20 10:27:01 +08:00
Aaron Jheng
6baafc7470 mysql-shell: 8.4.4 -> 8.4.5 2025-04-20 10:26:43 +08:00
Sandro
a1508cb1a9 mysql-shell-innovation: fix build on Linux (#378425) 2025-02-23 20:11:32 +01:00
Aaron Jheng
af8d3a48cd mysql-shell-innovation: fix build on Linux 2025-02-23 02:14:57 +00:00
Sandro
037797252a mysql-shell_8: 8.4.3 -> 8.4.4 (#376273) 2025-02-20 17:19:44 +01:00
Aaron Jheng
7ba807e730 mysql-shell-innovation: 9.1.0 -> 9.2.0 (#378249) 2025-01-31 16:49:53 +05:30
Aaron Jheng
cf6620ee65 mysql-shell_8: 8.4.3 -> 8.4.4 2025-01-24 09:08:59 +08:00
Aaron Jheng
f8c4632044 treewide: no 'with lib' 2024-12-21 00:47:04 +00:00
Aaron Jheng
3e8d408a5e mysql-shell{,_8,-innovation}: format with nixfmt 2024-11-24 10:47:09 +08:00
Theodore Ni
9ba75eb753 mysql-shell-innovation: add libutil on darwin; refactor to new SDK pattern 2024-11-09 05:27:34 -08:00
Theodore Ni
194e35dd63 mysql-shell: add libutil on darwin; refactor to new SDK pattern 2024-11-09 05:27:32 -08:00
Aaron Jheng
cbcee24607 mysql-shell-innovation: 9.0.1 -> 9.1.0 2024-10-17 02:18:09 +00:00
Aaron Jheng
c7a381c92a mysql-shell: 8.4.1 -> 8.4.3 2024-10-17 02:18:09 +00:00
Artturin
e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
Aaron Jheng
90addb6b7f mysql-shell-innovation: 9.0.0 -> 9.0.1 2024-07-25 08:57:23 +00:00
Aaron Jheng
7e47a024dc mysql-shell: point to mysql-shell_8 2024-07-08 12:53:14 +08:00
Aaron Jheng
4d29aa8d52 mysql-shell_8: init at 8.4.1 2024-07-08 12:53:06 +08:00
Aaron Jheng
5ba8d3a083 mysql-shell-innovation: 8.4.0 -> 9.0.0 2024-07-08 12:52:29 +08:00
Alexis Hildebrandt
755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00
Aleksana
e36a098b21 Merge pull request #311967 from aaronjheng/mysql-shell-innovation
mysql-shell-innovation: 8.3.0 -> 8.4.0
2024-05-16 17:15:58 +08:00
Aaron Jheng
0d1b4f63f1 mysql-shell-innovation: 8.3.0 -> 8.4.0 2024-05-15 22:52:28 +08:00
Aaron Jheng
36d4c3bbc3 mysql-shell: 8.0.36 -> 8.0.37 2024-05-13 10:14:21 +08:00
Aaron Jheng
67d15b0c09 mysql-shell-innovation: 8.2.1 -> 8.3.0 2024-01-28 10:05:35 +08:00
Aaron Jheng
1e68153501 mysql-shell: 8.0.35 -> 8.0.36 2024-01-18 19:00:30 +08:00
Aaron Jheng
395a593848 mysql-shell-innovation: 8.2.0 -> 8.2.1 2023-11-30 08:26:42 +00:00
Mario Rodas
2e6507ecf3 Merge pull request #264284 from aaronjheng/mysql-shell-innovation
mysql-shell-innovation: 8.1.1 -> 8.2.0
2023-10-30 21:37:50 -05:00
Aaron Jheng
919951b1e5 mysql-shell-innovation: 8.1.1 -> 8.2.0 2023-10-30 10:23:46 +08:00
Aaron Jheng
c0782f8e9c mysql-shell: 8.0.34 -> 8.0.35 2023-10-30 10:07:36 +08:00
Mario Rodas
1bdb15dea7 Merge pull request #256888 from aaronjheng/mysql-shell-innovation
mysql-shell-innovation: init at 8.1.1
2023-10-16 08:25:54 -05:00
Aaron Jheng
a74b301267 mysql-shell-innovation: init at 8.1.1 2023-09-23 20:52:26 +08:00
Aaron Jheng
d0585fc1aa mysql-shell: use finalAttrs 2023-09-23 20:42:48 +08:00
Aaron Jheng
9809ccfa25 mysql-shell: 8.0.33 -> 8.0.34 2023-07-31 11:39:37 +00:00