Commit Graph

14 Commits

Author SHA1 Message Date
Olivér Falvai
c7400e3e47 lbreakout2: disable hanging darwin Hydra builds
https://hydra.nixos.org/job/nixpkgs/staging-next/lbreakout2.aarch64-darwin
(cherry picked from commit 7a25334a14)
2024-11-15 16:25:20 +00:00
Martin Weinelt
8dd1001139
lbreakout2: disable sdltest on darwin
Gets stuck during configure run.
2024-11-11 19:25:13 +01:00
aleksana
571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08: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
R. Ryantm
ab16489646 lbreakouthd: 1.1.8 -> 1.1.9 2024-07-19 21:04:53 +00: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
7f78418eff lbreakouthd: 1.1.7 -> 1.1.8 2024-05-03 10:25:50 +00:00
Peder Bergebakken Sundt
aebea2af9a
Merge pull request #289525 from D3vil0p3r/patch-22
lbd: init at 0-unstable-2024-02-17
2024-04-21 19:24:52 +02:00
R. Ryantm
f89299e248 lbreakouthd: 1.1.6 -> 1.1.7 2024-04-09 22:00:48 +00:00
Anderson Torres
85bd7e43bf lbreakout2: refactor
- finalAttrs design pattern
- meta.mainProgram
2024-03-02 19:08:07 -03:00
Anderson Torres
4e7309d4c1 lbreakout2: migrate to by-name 2024-03-02 19:08:07 -03:00
Anderson Torres
29b043ba46 lbreakouthd: refactor
- meta.mainProgram
2024-03-02 19:08:07 -03:00
Anderson Torres
49d3ac8c99 lbreakouthd: migrate to by-name 2024-03-02 19:08:07 -03:00
D3vil0p3r
4f38e4136c lbd: init at 0-unstable-2024-02-17 2024-02-17 17:52:07 +01:00