Commit Graph

17 Commits

Author SHA1 Message Date
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
Tungsten842
da3d63f5e9 jamesdsp: build with qt6 2024-07-27 13:20:51 +02: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
stuebinm
ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00
R. Ryantm
7f4299d502 jamesdsp: 2.6.1 -> 2.7.0 2023-12-10 05:18:39 +00:00
Pol Dellaiera
0d6f3a3bb4
jamesdsp: minor refactor and reformat using nixpkgs-fmt 2023-08-15 19:43:01 +02:00
Pol Dellaiera
06139f23e0
jamesdsp: use finalAttrs pattern 2023-08-15 19:31:44 +02:00
R. Ryantm
d20a72e913 jamesdsp: 2.6.0 -> 2.6.1 2023-08-15 14:41:54 +00:00
rewine
532c089362
jamesdsp: 2.5.1 -> 2.6.0 2023-07-14 15:34:33 +08:00
R. Ryantm
9760c91330 jamesdsp-pulse: 2.4 -> 2.5.1 2023-06-23 21:20:26 +00:00
rewine
6ec9e25207 jamesdsp: 2.3 -> 2.4 2022-10-07 02:56:42 +08:00
Rick van Schijndel
433701147a
treewide: pkgs/applications: mark broken for aarch64-linux 2022-05-30 13:42:58 +02:00
Sandro
be7f4c1d46
Merge pull request #163931 from lorenz/backport-jamesdsp
jamesdsp: backport fix for PipeWire 0.3.44+
2022-04-27 14:43:28 +02:00
rewine
9cb508adf7 jamesdsp: add PulseAudio support 2022-04-21 21:35:13 +08:00
Lorenz Brun
102eabd1df jamesdsp: backport fix for PipeWire 0.3.44+
Using jamesdsp with PipeWire 0.3.44 and later causes frequent crashes
in jamesdsp. This backports the upstream fix.
2022-03-13 01:24:16 +01:00
K900
cb2cfba6f7 treewide: switch all desktop file generators to new API
Notably:
- remove explicit arguments that match the defaults
- convert everything to the right Nix types
2022-02-25 13:40:38 -08:00
pasqui23
57e73ca3ec
jamesdsp: init at 2.3 (#154158) 2022-02-08 12:36:06 +01:00