Commit Graph

44 Commits

Author SHA1 Message Date
R. Ryantm
1efe0f82ec moon: 1.28.3 -> 1.29.0 2024-10-08 03:57:06 +00:00
R. Ryantm
b37c665d5e moon: 1.28.2 -> 1.28.3 2024-09-28 09:14:34 +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
R. Ryantm
25f6b54b66 moon: 1.28.0 -> 1.28.2 2024-09-17 10:01:07 +00:00
R. Ryantm
8edf76dddf moon: 1.27.10 -> 1.28.0 2024-09-06 07:57:36 +00:00
R. Ryantm
bf28f8492d moon: 1.27.6 -> 1.27.10 2024-08-25 00:34:19 +00:00
R. Ryantm
8db41acb41 moon: 1.27.5 -> 1.27.6 2024-08-18 04:29:34 +00:00
R. Ryantm
43d78ceb87 moon: 1.26.4 -> 1.27.5 2024-08-01 11:35:46 +00:00
R. Ryantm
a6ac5329f3 moon: 1.26.1 -> 1.26.4 2024-07-04 00:57:36 +02:00
R. Ryantm
eaef6057ac moon: 1.25.6 -> 1.26.1 2024-06-25 01:29:18 +00:00
R. Ryantm
d97b752ae1 moon: 1.25.1 -> 1.25.6 2024-06-14 07:43:17 +00: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
R. Ryantm
dff9ba604a moon: 1.24.6 -> 1.25.1 2024-05-30 19:12:33 +00:00
R. Ryantm
d8aac9e380 moon: 1.24.5 -> 1.24.6 2024-05-24 17:51:52 +00:00
R. Ryantm
d269556c72 moon: 1.24.4 -> 1.24.5 2024-05-19 13:16:15 +00:00
R. Ryantm
476a299a2b moon: 1.24.2 -> 1.24.4 2024-05-13 23:37:49 +00:00
R. Ryantm
67c9e8317d moon: 1.24.1 -> 1.24.2 2024-04-28 22:58:01 +00:00
R. Ryantm
cb8e383617 moon: 1.22.10 -> 1.24.1 2024-04-23 18:09:27 +00:00
R. Ryantm
5773fd3cd7 moon: 1.22.8 -> 1.22.10 2024-03-23 12:05:35 +00:00
R. Ryantm
2c4494b23a moon: 1.22.7 -> 1.22.8 2024-03-19 23:00:02 +00:00
stuebinm
ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00
R. Ryantm
59d9c1d135 moon: 1.22.6 -> 1.22.7 2024-03-15 04:54:24 +00:00
R. Ryantm
6b592238cd moon: 1.22.4 -> 1.22.6 2024-03-10 19:45:33 +00:00
R. Ryantm
f8429622e8 moon: 1.21.4 -> 1.22.4 2024-03-06 05:49:20 +00:00
R. Ryantm
8cd2052471 moon: 1.20.1 -> 1.21.4 2024-02-18 05:26:51 +00:00
R. Ryantm
049bc13142 moon: 1.20.0 -> 1.20.1 2024-01-31 00:05:23 +00:00
R. Ryantm
c8d69218d7 moon: 1.19.3 -> 1.20.0 2024-01-27 10:12:33 +00:00
R. Ryantm
c18514d900 moon: 1.19.0 -> 1.19.3 2024-01-21 08:21:24 +00:00
R. Ryantm
f078fb0786 moon: 1.18.5 -> 1.19.0 2024-01-07 17:25:05 +00:00
R. Ryantm
24158a2cd9 moon: 1.18.2 -> 1.18.5 2023-12-27 06:00:31 +00:00
R. Ryantm
23b48175f5 moon: 1.16.0 -> 1.18.2 2023-12-17 02:09:43 +00:00
R. Ryantm
447001c4b7 moon: 1.15.0 -> 1.16.0 2023-11-02 04:22:21 +00:00
R. Ryantm
c0cb89a921 moon: 1.14.3 -> 1.15.0 2023-10-11 09:32:47 +00:00
R. Ryantm
c5f5e36954 moon: 1.13.4 -> 1.14.3 2023-10-05 11:58:54 +00:00
R. Ryantm
864c22e793 moon: 1.13.3 -> 1.13.4 2023-09-20 00:21:20 +00:00
R. Ryantm
57dd71eb96 moon: 1.13.0 -> 1.13.3 2023-09-09 10:06:53 +00:00
Maxence Maireaux
6082c70c96
moon: 1.10.1 -> 1.13.0 2023-09-05 18:46:56 +02:00
R. Ryantm
c020eb255c moon: 1.10.0 -> 1.10.1 2023-07-15 22:12:49 +00:00
R. Ryantm
2bfb14fdd1 moon: 1.9.2 -> 1.10.0 2023-07-13 11:00:21 +00:00
R. Ryantm
ce771049d2 moon: 1.9.1 -> 1.9.2 2023-07-05 17:39:24 +00:00
R. Ryantm
0ec4902ee3 moon: 1.8.3 -> 1.9.1 2023-07-02 05:18:22 +00:00
R. Ryantm
e7a2b32301 moon: 1.5.1 -> 1.8.3 2023-06-24 11:22:57 +00:00
Sandro Jäckel
11111115db
moon: change version to confirm to contributing guide 2023-06-15 23:43:29 +02:00
Maxence Maireaux
5fea47d66a
moon: init at v1.5.1 2023-05-17 12:12:13 +02:00