Commit Graph

157 Commits

Author SHA1 Message Date
Aleksana
c76137bb4d
wikiman: init at 2.13.2 (#359410) 2024-12-05 21:19:31 +08:00
34j
d637b85e25
treewide: replace --enable-wayland-ime with --enable-wayland-ime=true for the arguments to properly work (#361341) 2024-12-05 00:06:22 +05:30
savalet
44a4f0b715 winbox4: add savalet as a maintainer 2024-12-01 19:22:15 +01:00
savalet
d6bb88d9ad winbox4: 4.0beta9 -> 4.0beta12 2024-12-01 19:06:58 +01:00
Sefa Eyeoglu
01c33fb6d7
treewide: add --enable-wayland-ime flag to all Electron packages that uses NIXOS_OZONE_WL (#358620) 2024-11-29 18:48:23 +01:00
jopejoe1
e51a9df08a treewide: use dpkg setup hook 2024-11-26 21:57:29 +01:00
Leah Amelia Chen
4b53e94e9c
wikiman: init at 2.13.2 2024-11-26 21:49:10 +01:00
34j
8ae2932d56 add --enable-wayland-ime flag to all Electron packages that uses NIXOS_OZONE_WL 2024-11-24 13:34:28 +09:00
OPNA2608
58b8cb66b9 wipeout-rewrite: unstable-2023-08-13 -> 0-unstable-2024-07-07 2024-11-16 17:38:47 +01:00
OPNA2608
211532d7c9 wipeout-rewrite: Migrate to by-name 2024-11-16 17:38:42 +01:00
R. Ryantm
1a24ac2246 widelands: 1.2 -> 1.2.1 2024-11-15 16:42:44 +00:00
aleksana
68fb6d2d23 wiliwili: 1.4.1 -> 1.5.0 2024-11-14 16:19:54 +08:00
Nick Cao
e01ca8d232
wit-bindgen: 0.33.0 -> 0.34.0 (#354853) 2024-11-10 08:07:59 -05:00
uku
647624dca6
wine-discord-ipc-bridge: unstable-2023-08-09 -> 0.0.3 (#353900)
* wine-discord-ipc-bridge: unstable-2023-08-09 -> 0.0.3

* Update pkgs/by-name/wi/wine-discord-ipc-bridge/package.nix

---------

Co-authored-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-11-10 09:55:32 +01:00
R. Ryantm
b003bd1685 wit-bindgen: 0.33.0 -> 0.34.0 2024-11-09 21:17:51 +00: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
Reno Dakota
52bf1163fa
treewide: use getLib when accessing clang / libclang / stdenv.cc.cc
In preparation to eliminate the lib output for the unwrapped clang, use
`lib.getLib` to access the `lib` output.
2024-11-07 10:27:41 +00:00
nixpkgs-merge-bot[bot]
8d2266de11
wiremock: 3.9.1 -> 3.9.2 (#351728) 2024-10-28 06:17:55 +00:00
R. Ryantm
7c7da0f229 wiremock: 3.9.1 -> 3.9.2 2024-10-27 18:24:04 +00:00
Weijia Wang
ef66016d4d
wired: init at 0.10.6 (#350270) 2024-10-27 19:05:36 +01:00
Francesco Carmelo Capria
776970bb7d wired: init at 0.10.6 2024-10-23 15:23:37 +02:00
Yt
17c2b8e1dc
windmill: 1.333.2 -> 1.410.3 (#350049) 2024-10-20 17:06:49 -04:00
happysalada
8d575db460 windmill: 1.333.2 -> 1.410.3 2024-10-20 12:21:05 -04:00
Tomo
d249539594
wivrn: init at 0.19 (#316975) 2024-10-19 20:02:50 -07:00
Peder Bergebakken Sundt
3abf5b5241
wike: fix cross compilation (#338807) 2024-10-06 17:28:47 +02:00
R. Ryantm
94034513bd wit-bindgen: 0.32.0 -> 0.33.0 2024-10-04 23:59:02 +00:00
Sefa Eyeoglu
6b57adbbea
winbox4: add migration script
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-10-02 22:10:35 +02:00
Sefa Eyeoglu
36f91fc73f
winbox4: init at 4.0beta9
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-10-02 22:10:35 +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
Aleksana
75993f9da7
wireguard-ui: init at 0.6.2 (#340662) 2024-09-22 22:15:29 +08:00
R. Ryantm
541ef55772 wit-bindgen: 0.31.0 -> 0.32.0 2024-09-22 09:39:17 +00:00
PassiveLemon
c1cb18cd9e wivrn: init at 0.19 2024-09-19 15:34:30 -04:00
Anthony ROUSSEL
b85b6425ff win-pvdrivers: migrate to pkgs/by-name, format with nixfmt-rfc-style 2024-09-17 22:02:45 +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
nicoo
2641d97cbf pkgs/by-name: Convert hashes to SRI format
Reproduction script:
	# Bulk rewrite
	./maintainers/scripts/sha-to-sri.py pkgs/by-name
	# Revert some packages which will need manual intervention
	for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do
		git checkout -- "pkgs/by-name/${n:0:2}/${n}"
	done
2024-09-15 11:24:31 +02:00
wxt
061641eacf wireguard-ui: init at 0.6.2 2024-09-12 21:54:03 +08:00
R. Ryantm
674bc01410 wit-bindgen: 0.30.0 -> 0.31.0 2024-09-10 02:58:18 +00:00
R. Ryantm
b0a5797c24 wizer: 7.0.4 -> 7.0.5 2024-09-06 03:21:52 +00:00
Artturin
0f6841e616
wine-discord-ipc-bridge: init at unstable-2023-08-09 (#314298) 2024-09-05 22:43:56 +03:00
uku
22beb958ef wine-discord-ipc-bridge: init at unstable-2023-08-09 2024-09-05 20:52:30 +03:00
Colin
14aefbb104 wike: fix cross compilation 2024-09-01 13:37:26 +00:00
github-actions[bot]
75c9ed99be
Merge master into staging-next 2024-08-26 18:04:09 +00:00
David McFarland
5a87005eb0
wiseunpacker: init at 1.3.3 (#336611) 2024-08-26 07:29:45 -07:00
Jasper Chan
67e3dec9ad wiseunpacker: init at 1.3.3 2024-08-24 14:06:45 -07:00
K900
5c68540f8b Merge remote-tracking branch 'origin/staging-next' into staging 2024-08-22 13:20:38 +03:00
R. Ryantm
19cd409c14 wizer: 6.0.0 -> 7.0.4 2024-08-21 03:24:00 +00:00
github-actions[bot]
baf1b2776b
Merge staging-next into staging 2024-08-13 12:02:09 +00:00
R. Ryantm
b80c4321dd wit-bindgen: 0.29.0 -> 0.30.0 2024-08-13 04:52:47 +00:00
Alyssa Ross
2aa25051f7 wio: depend on wayland-scanner
Otherwise, wayland-scanner would be picked up from the wayland in
buildInputs, which isn't cross-friendly and will stop working when we
split wayland-scanner into a separate package.
2024-08-11 22:41:56 +03:00
R. Ryantm
9a47dadc72 wit-bindgen: 0.28.0 -> 0.29.0 2024-08-03 03:10:27 +00:00