Commit Graph

11 Commits

Author SHA1 Message Date
aktaboot
490cb91ec4 halloy: 2024.11 -> 2024.12 2024-10-12 15:23:25 +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
Shom Bandopadhaya
d24f0136ee halloy: 2024.08 -> 2024.11 2024-09-15 16:11:25 -05:00
Fabian Affolter
66f7d87670 halloy: 2024.7 -> 2024.8
Diff: https://github.com/squidowl/halloy/compare/refs/tags/2024.7...2024.8

Changelog: https://github.com/squidowl/halloy/blob/2024.8/CHANGELOG.md
2024-07-06 12:14:52 +02:00
iivusly
13b61aee3b
halloy: add myself as maintainer 2024-06-29 21:14:07 -07:00
iivusly
4f67ed1f9f
halloy: build .app on darwin 2024-06-29 21:13:18 -07:00
Fabian Affolter
083ac69bf0 halloy: format with nixfmt 2024-05-10 09:58:58 +02:00
Fabian Affolter
868b944a26 halloy: 2024.6 -> 2024.7
Diff: https://github.com/squidowl/halloy/compare/refs/tags/2024.6...2024.7

Changelog: https://github.com/squidowl/halloy/blob/2024.7/CHANGELOG.md
2024-05-10 09:51:29 +02:00
Funkeleinhorn
113bb97898
halloy: 2024.5 -> 2024.6
Changelog: https://github.com/squidowl/halloy/releases/tag/2024.6
2024-04-06 03:17:41 +02:00
Jeremy Baxter
9488d81a00 halloy: 2024.3 -> 2024.5
Closes #299814
2024-03-29 11:07:12 +13:00
Jeremy Baxter
e2c073711f halloy: migrate to pkgs/by-name 2024-03-29 09:47:20 +13:00