Commit Graph

9 Commits

Author SHA1 Message Date
Austin Horstman
894ab7c908
wttrbar: 0.10.6 -> 0.11.0 2024-11-09 08:05:35 -06: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
767ff175e1 wttrbar: 0.10.5 -> 0.10.6 2024-08-05 04:34:38 +00:00
R. Ryantm
b8f0521be9 wttrbar: 0.10.4 -> 0.10.5 2024-07-23 11:31:13 +00:00
R. Ryantm
558fd58bf2 wttrbar: 0.10.2 -> 0.10.4 2024-06-21 01:57:55 +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
fb29eac5a8 wttrbar: 0.10.1 -> 0.10.2 2024-06-05 23:27:14 +00:00
R. Ryantm
2d39d7708d wttrbar: 0.9.4 -> 0.10.1 2024-05-13 01:39:39 +00:00
Austin Horstman
0395ad995a
wttrbar: pkgs/applications/misc -> pkgs/by-name 2024-04-23 15:40:25 -05:00