Commit Graph

14 Commits

Author SHA1 Message Date
R. Ryantm
04a0e066c4 sagittarius-scheme: 0.9.11 -> 0.9.12 2024-10-15 09:26:05 +10: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
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
R. Ryantm
1c0f84ab6b sagittarius-scheme: 0.9.10 -> 0.9.11 2024-03-07 07:23:39 +01:00
Mario Rodas
87b3568726 sagittarius-scheme: mark broken on aarch64-darwin
Sagittarius Scheme doesn't support aarch64-darwin yet.
2023-11-30 04:20:00 +00:00
Mario Rodas
9cb0b263da sagittarius-scheme: unbreak on darwin 2023-11-30 04:20:00 +00:00
R. Ryantm
ac8f90bee6 sagittarius-scheme: 0.9.9 -> 0.9.10 2023-07-01 17:29:24 +00:00
Ashish SHUKLA
480c8ee25c
sagittarius-scheme: 0.9.8 -> 0.9.9 2022-09-09 17:56:04 +05:30
Rick van Schijndel
0b45cae8a3
treewide: pkgs/development/compilers: mark broken for darwin 2022-05-30 13:41:09 +02:00
R. Ryantm
fcfa87253d sagittarius-scheme: 0.9.7 -> 0.9.8 2021-10-29 02:04:30 +00:00
Ben Siraphob
acc5f7b18a pkgs/development/compilers: stdenv.lib -> lib 2021-01-23 08:57:37 +07:00
Jonathan Ringer
9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00
R. RyanTM
1680f2f77a sagittarius-scheme: 0.9.6 -> 0.9.7 2020-08-29 14:36:16 +00:00
Ashish SHUKLA
8c32ecd1f4
sagittarius-scheme: init at 0.9.6 2019-08-11 21:47:41 +05:30