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
Emily
4daa382907 typst: patch Cargo.lock for Rust 1.80
The joys of manually editing lock files with a text editor!

See: #332957
2024-08-09 21:26:51 +01: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
Gabriel Fontes
7bd6d9548e
typst: run tests 2024-05-17 15:05:38 -03:00
Gabriel Fontes
a73f616769
typst: add passthru.updateScript 2024-05-17 15:05:12 -03:00
Gaetan Lepage
eaf175898a typst: 0.11.0 -> 0.11.1
Diff: https://github.com/typst/typst/compare/v0.11.0...v0.11.1

Changelog: https://github.com/typst/typst/releases/tag/v0.11.1
2024-05-17 18:04:21 +02:00
Pol Dellaiera
faf7c6bb62
typst: 0.11.0-rc1 -> 0.11.0 2024-03-15 20:28:46 +01:00
Pol Dellaiera
7b6f7dadcd
typst: 0.10.0 -> 0.11.0-rc1 2024-03-10 13:46:07 +01:00
Pol Dellaiera
a267977215
typst: 0.9.0 -> 0.10.0 2023-12-04 17:15:02 +01:00