Commit Graph

8 Commits

Author SHA1 Message Date
Stefan Frijters
8524e36e4b
espflash: 3.1.1 -> 3.2.0 2024-10-18 12:04:56 +02: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
Stefan Frijters
a46c4c831f
espflash: 3.1.0 -> 3.1.1 2024-08-15 11:08:59 +02:00
Stefan Frijters
739c052d6b
espflash: 3.0.0 -> 3.1.0 2024-05-27 12:07:23 +02:00
Weijia Wang
495212307e espflash: fix build on darwin 2024-03-28 12:04:37 +01:00
Stefan Frijters
bc55ffb14a
espflash: 2.1.0 -> 3.0.0 2024-03-13 13:17:30 +01:00
Stefan Frijters
2183b128cc
espflash: add installShellCompletion 2024-02-17 20:16:21 +01:00
Alex Martens
6babd03fa0
cargo-espflash: rename to espflash (#286386) 2024-02-09 11:50:17 -05:00