Commit Graph

134 Commits

Author SHA1 Message Date
seth
9ae02ff8a8
treewide: adopt new cargo-tauri versions 2024-11-14 02:27:32 -05:00
Peder Bergebakken Sundt
0d9b400b9c
garnet: 1.0.18 -> 1.0.36 (#354331) 2024-11-14 03:49:22 +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
seth
182f3d0737
garnet: 1.0.18 -> 1.0.36
Changelog: https://github.com/microsoft/garnet/releases/tag/v1.0.36
Diff: https://github.com/microsoft/garnet/compare/v1.0.18...v1.0.36
2024-11-07 16:22:59 -05:00
wxt
a5b0e0634d
garble: add passthru.updateScript; 0.8.0 -> 0.13.0; add bot-wxt1221 as maintainers 2024-11-03 17:27:15 +08:00
wxt
a93d66c9d5
garble: move to by-name; nixfmt 2024-11-03 17:27:14 +08:00
Aleksana
e0e6c0e4b8
gale: init at 0.8.11 (#348901) 2024-10-28 23:21:50 +08:00
Nick Cao
fe5583f989
gate: 0.41.0 -> 0.42.0 (#351741) 2024-10-28 08:44:35 -04:00
R. Ryantm
c04aa66d86 gate: 0.41.0 -> 0.42.0 2024-10-27 19:46:23 +00:00
R. Ryantm
fc2523c753 gatus: 5.12.1 -> 5.13.0 2024-10-26 18:23:28 +00:00
silvanshade
71583a97f8
gamescope: 3.15.11 -> 3.15.13 2024-10-25 08:51:43 -06:00
TomaSajt
75d0169ee1
gale: init at 0.8.11 2024-10-16 00:08:33 +02:00
R. Ryantm
d2b448eaf3 gat: 0.18.0 -> 0.19.1 2024-10-15 11:54:30 +00:00
jfvillablanca
01279e0a7c gapless: 3.8.1 -> 4.0
https://gitlab.gnome.org/neithern/g4music/-/tags/v4.0
2024-10-14 17:54:00 +08:00
Pol Dellaiera
075be3e70b
nixos/gatus: init module (#294469) 2024-10-02 11:08:14 +02:00
kirillrdy
90fc7b122b
galculator: migrate to by-name (#344531) 2024-10-02 06:02:35 +10:00
R. Ryantm
fff2a7d3ef gancio: 1.19.1 -> 1.19.4 2024-09-30 07:33:41 +00:00
K900
6a112017a7
gamescope: 3.15.9 -> 3.15.11 (#345024) 2024-09-28 08:54:27 +03:00
R. Ryantm
0bc5e9cecc gamescope: 3.15.9 -> 3.15.11 2024-09-28 05:02:28 +00:00
nixpkgs-merge-bot[bot]
674c08fadc
gate: 0.40.0 -> 0.41.0 (#344435) 2024-09-28 04:24:53 +00:00
Weijia Wang
9bdff57ac7
gancio: 1.19.0 -> 1.19.1 (#343453) 2024-09-27 01:00:44 +02:00
Anderson Torres
0a487d274f galculator: refactor
- finalAttrs
- no nested with
- strictDeps set as false
2024-09-25 18:17:38 -03:00
Anderson Torres
a06a1a61a1 galculator: migrate to by-name 2024-09-25 17:55:13 -03:00
R. Ryantm
7073bf5628 gate: 0.40.0 -> 0.41.0 2024-09-25 13:12:59 +00:00
Fabian Affolter
f07d335859
gapcast: init at 1.0.3 (#340971) 2024-09-25 00:40:52 +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
R. Ryantm
fb74f8c3d7 gancio: 1.19.0 -> 1.19.1 2024-09-21 08:05:21 +00:00
Fabian Affolter
9222600301 gapcast: init at 1.0.3
802.11 broadcast analyzer & injector

https://github.com/ANDRVV/gapcast
2024-09-19 23:39:12 +02:00
Pim Kunis
7d68a055b9 gatus: add nixosTest 2024-09-19 21:35:06 +02:00
Anderson Torres
f0e64ce16f treewide: migrate packages maintained by AndersonTorres to by-name
Manual migration for the sake of by-name migration is no longer discouraged
since #340235.
2024-09-16 14:26:47 -03:00
R. Ryantm
866754d780 gate: 0.39.3 -> 0.40.0 2024-09-14 01:12:37 +00:00
K900
8d7af7c14d gamescope: 3.15.5 -> 3.15.9 2024-09-12 07:21:52 +03:00
R. Ryantm
c419ea1a5f gatus: 5.12.0 -> 5.12.1 2024-09-09 11:44:23 +00:00
Kerstin
e248589c0f
gancio: init at 1.19.0 (#279011) 2024-09-08 22:51:23 +02:00
Jean-Baptiste Giraudeau
0e639f2cc0
gancio: init at 1.19.0
Gancio is a shared agenda for local communities: https://gancio.org/
2024-09-06 16:32:06 +02:00
R. Ryantm
6b1425c64b gamescope: 3.15.2 -> 3.15.5 2024-09-06 03:52:39 +00:00
Sebastián Mancilla
a05a9cd413
gate: 0.39.2 -> 0.39.3 (#335674) 2024-09-01 22:44:23 -04:00
K900
2e8a5f98ac gamescope: 3.14.29 -> 3.15.2, move wayland-scanner to common inputs 2024-08-29 21:39:25 +03:00
github-actions[bot]
b430e34392
Merge master into staging-next 2024-08-29 06:05:05 +00:00
Peder Bergebakken Sundt
c477a48699
treewide: replace all pytest-cov patching outside of pythonPackages with pytest-cov-stub (#336777) 2024-08-28 22:17:38 -04:00
github-actions[bot]
d62aaef66a
Merge master into staging-next 2024-08-28 00:13:03 +00:00
Sandro Jäckel
ca355f14c8
treewide: replace all pytest-cov patching outside of pythonPackages with pytest-cov-stub 2024-08-27 20:47:13 +02:00
R. Ryantm
dd35b08c36 gatus: 5.11.0 -> 5.12.0 2024-08-27 12:56:58 +00:00
K900
5c68540f8b Merge remote-tracking branch 'origin/staging-next' into staging 2024-08-22 13:20:38 +03:00
Sebastián Mancilla
90d7d23543
Merge pull request #332386 from getchoo/pkgs/garnet/1.0.18
garnet: 1.0.16 -> 1.0.18
2024-08-20 19:11:35 -04:00
R. Ryantm
62e7bdb1dc gate: 0.39.2 -> 0.39.3 2024-08-18 20:26:16 +00:00
github-actions[bot]
926aefdd61
Merge staging-next into staging 2024-08-16 06:01:46 +00:00
Sebastián Mancilla
dc970f3513
Merge pull request #330981 from r-ryantm/auto-update/gabutdm
gabutdm: 2.5.0 -> 2.6.0
2024-08-15 23:04:23 -04:00
Florian Klink
0b09202b66
Merge pull request #214906 from alyssais/wayland-scanner
wayland-scanner: split from wayland
2024-08-12 22:37:05 +03:00
Florian Klink
0b16a47cd2 gamescope: fix cross
This needs to be buildPackages.patchelfUnstable, as it's executed by the
build platform, during the build.
2024-08-12 21:16:04 +03:00