Commit Graph

9791 Commits

Author SHA1 Message Date
K900
b29cb6c1f9 Merge remote-tracking branch 'origin/master' into staging-next 2024-09-30 20:23:25 +03:00
Nick Cao
8d7057d40f dracula-theme: 4.0.0-unstable-2024-09-07 -> 4.0.0-unstable-2024-09-24 (#345418) 2024-09-30 09:17:10 -04:00
github-actions[bot]
d7d44ff498 Merge master into staging-next 2024-09-30 12:05:43 +00:00
R. Ryantm
262ec34318 iosevka: 31.6.1 -> 31.7.1 2024-09-30 07:05:05 +00:00
R. Ryantm
fcc1b52f56 dracula-theme: 4.0.0-unstable-2024-09-07 -> 4.0.0-unstable-2024-09-24 2024-09-30 03:55:42 +00:00
github-actions[bot]
7b0a6891dd Merge master into haskell-updates 2024-09-30 00:16:54 +00:00
Alyssa Ross
ac037f0b18 Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
	pkgs/development/compilers/llvm/common/default.nix
2024-09-29 20:10:12 +02:00
Nick Cao
b5603d79f0 whitesur-kde: 2022-05-01-unstable-2024-09-10 -> 2022-05-01-unstable-2024-09-26 (#345080) 2024-09-29 08:41:09 -04:00
github-actions[bot]
f8276852d5 Merge master into haskell-updates 2024-09-29 00:18:04 +00:00
github-actions[bot]
8693fc15c4 Merge master into staging-next 2024-09-28 18:04:13 +00:00
Nick Cao
31da206767 numix-icon-theme: 24.04.22 -> 24.09.18 (#345027) 2024-09-28 08:55:29 -04:00
R. Ryantm
c2669d4470 whitesur-kde: 2022-05-01-unstable-2024-09-10 -> 2022-05-01-unstable-2024-09-26 2024-09-28 12:02:45 +00:00
R. Ryantm
a80da3e729 v2ray-domain-list-community: 20240914091803 -> 20240920063125 2024-09-28 09:26:41 +00:00
R. Ryantm
2f16119c4b numix-icon-theme: 24.04.22 -> 24.09.18 2024-09-28 05:46:03 +00:00
R. Ryantm
8dac453957 qogir-kde: 0-unstable-2024-09-01 -> 0-unstable-2024-09-21 2024-09-27 23:24:54 +00:00
R. Ryantm
d53586885c cozette: 1.25.1 -> 1.25.2 2024-09-27 12:44:54 +00:00
sternenseemann
b341506a8d Merge branch master into haskell-updates
Conflicts from #341407 resolved.
2024-09-27 11:41:25 +02:00
github-actions[bot]
b42890bf68 Merge master into staging-next 2024-09-27 06:04:49 +00:00
Weijia Wang
4984a56ad1 sddm-astronaut: Fix meta.homepage url (#344519) 2024-09-27 02:52:47 +02:00
Fabián Heredia Montiel
2a115bbd1e Merge remote-tracking branch 'origin/master' into staging-next 2024-09-26 18:03:59 -06:00
Dee Anzorge
06c4b0d0ed unicode-emoji: 15.1 -> 16.0
Release notes: https://www.unicode.org/versions/Unicode16.0.0/
2024-09-27 01:44:44 +02:00
Weijia Wang
154ab611a1 whitesur-kde: 2022-05-01-unstable-2024-08-26 -> 2022-05-01-unstable-2024-09-10 (#342533) 2024-09-27 00:13:11 +02:00
github-actions[bot]
c8c18095f9 Merge master into staging-next 2024-09-26 18:04:33 +00:00
Dee Anzorge
0fbfad403a unicode-character-database: 15.1.0 -> 16.0.0
Release announcement: https://www.unicode.org/versions/Unicode16.0.0/
2024-09-26 19:52:16 +02:00
Franz Pletz
e1635a35b9 nixos/nginx: add option typesHashMaxSize (#341072) 2024-09-26 14:42:26 +02:00
Izorkin
9343e69f8f nixos/tests/nginx-mime: add check optimal size of types_hash 2024-09-26 10:51:59 +03:00
Mike Thai
880b31fcf7 sddm-astronaut: fix meta.homepage url 2024-09-25 16:15:08 -04:00
Artturin
f0e657f3b1 Merge branch 'master' into staging-next 2024-09-25 06:05:01 +03: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
Fabián Heredia Montiel
72066dcf1c media-player-info: 24 -> 26 (#335911) 2024-09-23 15:34:17 -06:00
github-actions[bot]
3abd3dab62 Merge master into haskell-updates 2024-09-23 00:16:29 +00:00
Fabián Heredia Montiel
9b2a506736 Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:

- pkgs/tools/package-management/nix/default.nix
2024-09-22 13:45:27 -06:00
Nick Cao
732b635f4f adw-gtk3: 5.3 -> 5.4 (#343703) 2024-09-22 10:11:09 -04:00
github-actions[bot]
6bb2408295 Merge master into staging-next 2024-09-22 12:05:17 +00:00
Nikolay Korotkiy
b409cdb759 iosevka: 31.6.0 -> 31.6.1 (#343440) 2024-09-22 15:19:54 +04:00
R. Ryantm
af654ff043 adw-gtk3: 5.3 -> 5.4 2024-09-22 11:09:23 +00:00
Robert Helgesson
e34b70e077 unifont: 15.1.05 -> 16.0.01 2024-09-22 08:17:57 +02:00
R. Ryantm
87d1ec5b37 iosevka: 31.6.0 -> 31.6.1 2024-09-21 07:04:43 +00:00
github-actions[bot]
93d142112e Merge master into haskell-updates 2024-09-21 00:15:10 +00:00
github-actions[bot]
754402a237 Merge staging-next into staging 2024-09-21 00:13:41 +00:00
Nick Cao
65e63f0a9b ddccontrol-db: 20240304 -> 20240920 (#343271) 2024-09-20 17:31:34 -04:00
Nick Cao
ace5234a41 i-dot-ming: 8.00 -> 8.10 (#343226) 2024-09-20 17:06:02 -04:00
R. Ryantm
4ddc9f80d6 ddccontrol-db: 20240304 -> 20240920 2024-09-20 13:38:20 +00:00
Leah Amelia Chen
2825fb0546 i-dot-ming: 8.00 -> 8.10 2024-09-20 12:08:25 +02:00
K900
d8a54461fc Merge remote-tracking branch 'origin/staging-next' into staging 2024-09-20 07:27:56 +03:00
github-actions[bot]
e0580b2ad4 Merge master into haskell-updates 2024-09-20 00:15:58 +00:00
h7x4
9a6c76c4af treewide: remove unused inputs (#342672) 2024-09-19 20:36:18 +02:00
R. Ryantm
f9af46ae15 julia-mono: 0.056 -> 0.057 2024-09-19 02:00:23 +00:00
github-actions[bot]
bb260f91c4 Merge master into haskell-updates 2024-09-18 00:15:34 +00:00
github-actions[bot]
b638e02a58 Merge staging-next into staging 2024-09-18 00:13:59 +00:00