Commit Graph

67 Commits

Author SHA1 Message Date
Melvyn
97a25d0b58
slskd: 0.21.4 -> 0.22.0 (#364051) 2024-12-10 18:29:02 -05:00
Silvan Mosberger
4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00
R. Ryantm
c8a4f2060e slumber: 2.2.0 -> 2.3.0 2024-12-08 10:07:29 +00:00
Adam C. Stephens
14ff5ebae0
slimserver: 8.5.2 -> 9.0.0 (#361093) 2024-12-04 07:09:35 -05:00
Fabian Affolter
aedc37d8a8
slowlorust: refactor (#361412) 2024-12-03 23:38:05 +01:00
Fabian Affolter
fe5fb91889 slowlorust: move to pkgs/by-name 2024-12-03 11:20:57 +01:00
R. Ryantm
6c5e692362 slurm: 24.05.4.1 -> 24.11.0.1 2024-12-03 04:32:40 +00:00
Adam C. Stephens
b834a52cc3
slimserver: 8.5.2 -> 9.0.0
https://lyrion.org/getting-started/changelog-lms9/#introducing-lyrion-music-server-version-900-2024-11-29-2ed5e147e
2024-12-02 08:48:54 -05:00
Nick Cao
c0c3f3f95f
slumber: 2.1.0 -> 2.2.0 (#353502) 2024-11-11 08:33:22 -05:00
Alyssa Ross
031786067b
slint-lsp: remove obsolete libXrandr input
libXrandr has not been required since winit 0.30.0[1] (slint-lsp 1.7.0).

Tested that previews still work on X11.

[1]: bb9b629bc3
2024-11-09 22:23:51 +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
Nick Cao
7582c1111d
slackdump: 2.5.11 -> 2.6.0 (#354206) 2024-11-07 13:20:25 -05:00
R. Ryantm
99a3481c22 slackdump: 2.5.11 -> 2.6.0 2024-11-07 11:03:19 +00: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
R. Ryantm
b67fdd5017 slumber: 2.1.0 -> 2.2.0 2024-11-07 01:56:10 +01:00
wxt
10597023a8
slackdump: init at 2.5.11 2024-11-06 18:22:59 +08:00
Gaetan Lepage
4c788162b1 slweb: 0.10.1 -> 0.10.2 2024-11-02 23:59:15 +01:00
dr56ekgbb
cff9234310 sly: init at 0.4.0 2024-11-02 05:44:15 +08:00
xgroleau
0fd68a3129 chore: updated to 1.8.0 2024-10-26 11:17:01 -05:00
melvyn
c8073c4439
slskd: disable flaky test 2024-10-06 21:32:19 -04:00
R. Ryantm
a6840cffbb slumber: 2.0.0 -> 2.1.0 2024-10-04 07:02:11 +00:00
Gaetan Lepage
9763971aba slweb: 0.9.0 -> 0.10.1 2024-10-03 14:11:35 +02:00
Gaetan Lepage
246b34faee slweb: format 2024-10-02 15:41:17 +02:00
Gaetan Lepage
bbb291adf0 slweb: move to pkgs/by-name 2024-10-02 15:35:35 +02:00
seth
d4735e4f99 slskd: add version test 2024-09-27 19:35:01 -04:00
seth
02464bd414 slskd: add getchoo as maintainer 2024-09-27 19:35:01 -04:00
seth
8acd294032 slskd: add meta.mainProgram 2024-09-27 19:35:01 -04:00
seth
29fea16b3d slskd: don't split derivations for build 2024-09-27 19:35:01 -04:00
melvyn
5f34e0d662
slskd: 0.21.3 -> 0.21.4 2024-09-27 17:50:49 -04: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
Dimitar Nestorov
2aee66095c
sloth-app: 3.2 -> 3.3 2024-09-21 17:09:28 +03:00
Nick Cao
1a3873eea2
sleek-grub-theme: unstable-2022-06-04 -> unstable-2024-08-11 (#342932) 2024-09-19 12:54:41 -04:00
LuoChen
71e58fd97c
sleek-grub-theme: unstable-2022-06-04 -> unstable-2024-08-11 2024-09-19 10:35:42 +08: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
R. Ryantm
b50abbbe4e slumber: 1.8.1 -> 2.0.0 2024-09-08 02:32:13 +00:00
Fabian Affolter
c9b5a62401 slumber: 1.5.0 -> 1.8.1
Diff: https://github.com/LucasPickering/slumber/compare/refs/tags/v1.5.0...v1.8.1

Changelog: https://github.com/LucasPickering/slumber/blob/v1.8.1/CHANGELOG.md
2024-08-25 14:57:10 +02:00
jecaro
93da4cdf11 slimserver: Fix bug in scanner
The nixpkgs version of FileNext Perl package (1.18) is incompatible with
slimserver. Using it make the scanner skips most of the file. See
https://github.com/LMS-Community/slimserver/pull/1140

Using the vendor version (1.06) fixes the issue.
2024-08-14 14:15:42 +02:00
Peder Bergebakken Sundt
c93eee1f5f
Merge pull request #330507 from melvyn2/update-slskd
slskd: 0.21.1 -> 0.21.3
2024-08-11 23:38:08 +02:00
Guilhem Saurel
2064b01da3 sleqp: init at 1.0.2 2024-08-08 00:26:49 +02:00
melvyn
90de5096f6
slskd: 0.21.1 -> 0.21.3 2024-07-27 14:11:35 -07:00
buffet
515050af78 maintainers: remove buffet 2024-07-04 13:17:34 +02:00
Jan van Esdonk
42e2639580 slumber: 1.4.0 -> 1.5.0 2024-06-18 11:15:23 +02:00
R. Ryantm
fb69db9330 slumber: 1.3.2 -> 1.4.0 2024-06-12 07:41:28 +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
Alexis Hildebrandt
bf995e3641 treewide: Remove ending period from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
2024-06-09 23:04:51 +02:00
Adam Stephens
8be1155eee
slimserver: 8.5.1 -> 8.5.2 2024-06-03 23:49:40 -04:00
Jan van Esdonk
c553c2c39f slumber: 1.3.1 -> 1.3.2 2024-05-27 15:22:22 +02:00
Jan van Esdonk
7f4adaafb3 slumber: 1.3.0 -> 1.3.1 2024-05-21 10:12:49 +02:00
Nick Cao
50cc50fa0d
slurp: mark platforms as linux only 2024-05-20 21:45:52 -04:00