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
figsoda
6b516a680e sagoin: 0.2.3 -> 0.2.4
Diff: https://github.com/figsoda/sagoin/compare/v0.2.3...v0.2.4

Changelog: https://github.com/figsoda/sagoin/blob/v0.2.4/CHANGELOG.md
2024-09-16 18:43:49 -04: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
062b745704 sagoin: 0.2.2 -> 0.2.3
Diff: https://github.com/figsoda/sagoin/compare/v0.2.2...v0.2.3

Changelog: https://github.com/figsoda/sagoin/blob/v0.2.3/CHANGELOG.md
2023-07-31 16:52:46 -04:00
figsoda
94aefe48d2 sagoin: 0.2.1 -> 0.2.2
Diff: https://github.com/figsoda/sagoin/compare/v0.2.1...v0.2.2

Changelog: https://github.com/figsoda/sagoin/blob/v0.2.2/CHANGELOG.md
2023-06-02 13:28:42 -04:00
figsoda
542393ccd8 sagoin: 0.2.0 -> 0.2.1
Diff: https://github.com/figsoda/sagoin/compare/v0.2.0...v0.2.1

Changelog: https://github.com/figsoda/sagoin/blob/v0.2.1/CHANGELOG.md
2023-02-20 16:43:16 -05:00
figsoda
d1cd75e56c sagoin: 0.1.0 -> 0.2.0 2022-11-19 15:55:18 -05:00
figsoda
b62ef86559 sagoin: init at 0.1.0 2022-10-25 14:40:59 -04:00