Commit Graph

9 Commits

Author SHA1 Message Date
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
Samuel Tardieu
e5b4bd0619 rtz: 0.7.0 → 0.7.1
No change in `rtz` code. This is a patch release done to vendor
`utoipa-swagger-ui` and let us remove the patch made in
4478f423e3.
2024-09-19 18:19:45 +02:00
Samuel Tardieu
7dff189bbc rtz: fix build on darwin 2024-09-01 11:38:32 +02:00
Samuel Tardieu
4478f423e3 rtz: 0.5.3 -> 0.7.0 2024-08-31 11:41:41 +02: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
h7x4
41974d5ed9
treewide: add mainProgram 2023-11-27 02:17:53 +01:00
figsoda
27b6d3ade0 rtz: 0.4.2 -> 0.5.3
Diff: https://github.com/twitchax/rtz/compare/v0.4.2...v0.5.3

Changelog: https://github.com/twitchax/rtz/releases/tag/v0.5.3
2023-08-04 17:30:46 -04:00
figsoda
4d50a5352e rtz: 0.3.2 -> 0.4.2
Diff: https://github.com/twitchax/rtz/compare/v0.3.2...v0.4.2

Changelog: https://github.com/twitchax/rtz/releases/tag/v0.4.2
2023-07-25 17:49:50 -04:00
figsoda
c86609fefb rtz: init at 0.3.2
https://github.com/twitchax/rtz
2023-07-22 23:20:30 -04:00