Commit Graph

4 Commits

Author SHA1 Message Date
Bob van der Linden
4b634b58e8
ngrok: 3.14.0 -> 3.16.0 2024-09-26 22:09:03 +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
Bob van der Linden
7bd0f2e9bf
ngrok: 3.13.0 -> 3.14.0 2024-08-04 12:48:25 +02:00
Bob van der Linden
a298a03ba6
ngrok: 3.10.1 -> 3.13.0 (#328897)
* ngrok: move to pkgs/by-name

* ngrok: support phase hooks

* ngrok: reuse lib.platforms.unix

* ngrok: format using nixfmt-rfc-style

* ngrok: add downloadPage and changelog

* ngrok: remove nested `with lib`

* ngrok: use xh instead of httpie for updateScript

Currently httpie cannot validate HTTPS certificate due to
https://github.com/NixOS/nixpkgs/issues/94666. xh is an alternative
where this problem does not exist.

* ngrok: 3.10.1 -> 3.13.0

* ngrok: format update.sh

* ngrok: use BASH_SOURCE in update.sh

* ngrok: strip on non-darwin systems
2024-07-22 10:29:32 -03:00