Commit Graph

76 Commits

Author SHA1 Message Date
R. Ryantm
55f375d1b4 quill-log: 7.1.0 -> 7.2.2 2024-09-28 04:37:07 +00:00
Weijia Wang
a232bd65f2
quickjs-ng: 0.5.0 -> 0.6.0 (#343409) 2024-09-27 01:03:44 +02:00
nixpkgs-merge-bot[bot]
09736ade02
quarkus: 3.14.2 -> 3.14.4 (#343450) 2024-09-25 07:39:49 +00: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
33825c7ae7 quarkus: 3.14.2 -> 3.14.4 2024-09-21 07:52:44 +00:00
R. Ryantm
402eb1ddcb quickjs-ng: 0.5.0 -> 0.6.0 2024-09-21 02:33:23 +00:00
Nick Cao
cf67a1a89d
quill-log: 7.0.0 -> 7.1.0 (#342463) 2024-09-17 15:27:28 -04:00
Aleksana
84365fb2fc
quick-lookup: init at 2.1.1 (#342193) 2024-09-17 13:59:43 +08:00
R. Ryantm
4151c32249 quill-log: 7.0.0 -> 7.1.0 2024-09-17 05:54:38 +00: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
aleksana
e3a1d7b51d quick-lookup: init at 2.1.1 2024-09-16 10:31:58 +08: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
R. Ryantm
9bffc1352a quarkus: 3.14.1 -> 3.14.2 2024-09-09 01:20:17 +00:00
R. Ryantm
1603245c31 quill-log: 6.1.2 -> 7.0.0 2024-09-06 03:13:55 +00:00
R. Ryantm
a21545d6a5 quarkus: 3.13.2 -> 3.14.1 2024-09-01 18:53:48 +00:00
Sandro Jäckel
d50e23f0a4
glxinfo: replace with mesa-demos 2024-08-28 14:38:12 +02:00
Jan Tojnar
b8f3c78021
Merge pull request #333917 from jtojnar/gnome-top-level
gnome: Move more packages to top-level
2024-08-24 01:43:31 +02:00
R. Ryantm
14e642d0cf quill-log: 6.1.0 -> 6.1.2 2024-08-16 18:11:30 +00:00
R. Ryantm
59e71a2721 quarkus: 3.13.0 -> 3.13.2 2024-08-11 22:50:13 +00:00
Jan Tojnar
d364738c76 quadrapassel: Move from gnome scope to top-level 2024-08-12 00:29:10 +02:00
R. Ryantm
fb66779107 quill-log: 6.0.0 -> 6.1.0 2024-08-10 03:07:42 +00:00
Nick Cao
ae26c80bc3
Merge pull request #328987 from r-ryantm/auto-update/quarkus
quarkus: 3.12.1 -> 3.13.0
2024-08-05 19:46:39 -04:00
R. Ryantm
0e35c2f10f quarkus: 3.12.1 -> 3.13.0 2024-08-03 11:30:02 +00:00
Jonas Heinrich
368f21fed1 quba: init at 1.4.0 2024-08-03 09:01:26 +02:00
Sandro
fc5e08c730
Merge pull request #316404 from odygrd/quill_init
quill-log init at 6.0.0
2024-07-29 16:40:24 +02:00
Jörg Thalheim
5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00
Odysseas Georgoudis
ea7a455700 quill-log: init at 6.0.0 2024-07-29 00:23:37 +01:00
Peder Bergebakken Sundt
2d65995365
Merge pull request #327867 from mjoerg/quickemu-4.9.6
quickemu: 4.9.5 -> 4.9.6
2024-07-20 02:34:32 +02:00
Martin Joerg
4494b6d93e quickemu: 4.9.5 -> 4.9.6
https://github.com/quickemu-project/quickemu/releases/tag/4.9.6
https://github.com/quickemu-project/quickemu/compare/4.9.5...4.9.6
2024-07-17 09:17:25 +00:00
Sandro Jäckel
b7de31a351
quark-goldleaf: stop overwriting maven 2024-07-15 15:13:20 +02:00
R. Ryantm
04c48aa9e9 quarkus: 3.12.0 -> 3.12.1 2024-07-09 10:58:26 +00:00
h7x4
7384b9abdc
treewide: set meta.changelog 2024-07-07 15:20:06 +02:00
Michael Adler
9604aba3f6 quickemu: fix Samba shares
This makes it possible to share your home dir with a Windows guest.

* use `qemu_full` for the correct smbd path; the fallback path `/usr/sbin/smbd` fails on NixOS [1]
* make the `smbd` binary available to quickemu, enabling it to start qemu with Samba support [2]

[1] 28b8a57ad6/meson.build (L2217)
[2] 626591bca8/quickemu (L1083)
2024-07-03 08:58:10 +02:00
Weijia Wang
a88b2956c9
Merge pull request #318159 from r-ryantm/auto-update/quickjs-ng
quickjs-ng: 0.4.1 -> 0.5.0
2024-07-03 00:16:48 +02:00
R. Ryantm
117ef0f0e1 quarkus: 3.11.3 -> 3.12.0 2024-07-02 05:12:25 +00:00
Pyrox
75b45fc1d7
quickemu: 4.9.4-unstable-2024-05-28 -> 4.9.5 2024-06-28 16:54:06 -04:00
Weijia Wang
70ebfbe1d2 quickjs-ng: fix build on aarch64-linux 2024-06-28 01:30:59 +02:00
R. Ryantm
50790bd026 quickjs-ng: 0.4.1 -> 0.5.0 2024-06-28 01:27:56 +02:00
R. Ryantm
5c3e12dcd7 quarkus: 3.11.2 -> 3.11.3 2024-06-26 09:53:18 +00:00
éclairevoyant
398222724a
Merge pull request #321653 from Frontear/update-quickemu
quickemu: 4.9.4 -> 4.9.4-unstable-2024-05-28
2024-06-24 14:16:15 +00:00
Ali Rizvi
27749da4f7
quickemu: 4.9.4 -> 4.9.4-unstable-2024-05-28 2024-06-22 01:40:14 -04:00
R. Ryantm
5652a964df quarkus: 3.11.1 -> 3.11.2 2024-06-19 18:01:39 +00:00
Sandro
88e3f34ff3
Merge pull request #316758 from eclairevoyant/quickemu
quickemu: decrease windows ram requirements and nixfmt
2024-06-13 20:35:08 +02:00
R. Ryantm
4698562bf4 quarkus: 3.11.0 -> 3.11.1 2024-06-11 18:21:55 +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
Weijia Wang
410ba54a91
Merge pull request #317373 from r-ryantm/auto-update/quarkus
quarkus: 3.10.2 -> 3.11.0
2024-06-08 22:45:12 +02:00
Peder Bergebakken Sundt
fc78b8efd6
Merge pull request #273789 from phunehehe/quinze
quinze: init at 2018-09-22
2024-06-08 16:54:39 +02:00
R. Ryantm
04497b90be quarkus: 3.10.2 -> 3.11.0 2024-06-05 07:37:02 +00:00
éclairevoyant
1fe0639a8b
quickemu: decrease windows ram requirements 2024-06-02 18:45:43 -04:00
éclairevoyant
9e2b80d4de
quickemu: format with nixfmt-rfc-style 2024-06-02 18:42:02 -04:00