Commit Graph

138 Commits

Author SHA1 Message Date
github-actions[bot]
eb0f257925
Merge master into staging-next 2024-10-29 00:14:34 +00:00
Adam C. Stephens
c19ae194f9
audiobookshelf: 2.15.1 -> 2.16.0 (#351934) 2024-10-28 17:39:42 -04:00
Rick van Schijndel
d7216383a5
auto-cpufreq: getent in propagatedBuildInputs (#350511) 2024-10-28 21:33:57 +01:00
K900
0c45a8b5c4 Merge remote-tracking branch 'origin/master' into staging-next 2024-10-28 21:46:13 +03:00
Adam Stephens
e706c31942
audiobookshelf: 2.15.1 -> 2.16.0 2024-10-28 16:26:14 +00:00
Nick Hu
0595d469c7
autoraise: init at 5.3 (#349777)
* autoraise: init at 5.3

* Update pkgs/by-name/au/autoraise/package.nix

Co-authored-by: ジムワルド <96021122+zimward@users.noreply.github.com>

---------

Co-authored-by: ジムワルド <96021122+zimward@users.noreply.github.com>
2024-10-28 14:35:04 +00:00
Robert James Hernandez
ec876e54f8 auto-cpufreq: getent in propagatedBuildInputs
The auto-cpufreq daemon leverage getent to locate the users homedir.
2024-10-22 16:11:13 +00:00
github-actions[bot]
f2d7c5202d
Merge master into staging-next 2024-10-21 18:04:46 +00:00
Adam C. Stephens
04ffa382ab
audiobookshelf: 2.15.0 -> 2.15.1 (#349688) 2024-10-21 12:53:14 -04:00
github-actions[bot]
8164a7aa6d
Merge master into staging-next 2024-10-21 00:14:52 +00:00
Gutyina Gergő
9744efc3b0
treewide: update pnpmDeps hashes 2024-10-19 23:50:41 +02:00
Adam Stephens
56ec5e83a4
audiobookshelf: 2.15.0 -> 2.15.1
https://github.com/advplyr/audiobookshelf/releases/tag/v2.15.1
2024-10-18 23:52:34 -04:00
github-actions[bot]
2c176e14b1
Merge master into staging-next 2024-10-18 18:04:25 +00:00
FliegendeWurst
9c2f72fc58 auto-cpufreq: copy icon to correct location 2024-10-18 14:49:02 +02:00
github-actions[bot]
05ae933cd6
Merge master into staging-next 2024-10-16 12:05:34 +00:00
Heitor Augusto
0c8d09f274
audacity: remove with lib from meta and rec 2024-10-15 16:07:22 -03:00
Heitor Augusto
0ee4e13f4b
audacity: format with nixfmt-rfc-style 2024-10-15 16:00:27 -03:00
Heitor Augusto
a47f07a48a
audacity: move to by-name 2024-10-15 15:59:37 -03:00
github-actions[bot]
873f258025
Merge staging-next into staging 2024-10-14 18:04:57 +00:00
Martin Joerg
f7d8c85ec2 audiobookshelf: enable nusqlite3 extension 2024-10-14 12:51:55 +00:00
Martin Joerg
6e69d78987 audiobookshelf: 2.14.0 -> 2.15.0
https://github.com/advplyr/audiobookshelf/releases/tag/v2.15.0
https://github.com/advplyr/audiobookshelf/compare/refs/tags/v2.14.0...refs/tags/v2.15.0
2024-10-14 12:51:55 +00:00
github-actions[bot]
55382a65b9
Merge staging-next into staging 2024-10-14 06:05:43 +00:00
Robert Schütz
1b445bb575
python312Packages.icalendar: 5.0.13 -> 6.0.0 (#328227) 2024-10-13 20:29:14 -07:00
Robert Schütz
b23d5f6129 autosuspend: 7.0.1 -> 7.0.2
Diff: https://github.com/languitar/autosuspend/compare/refs/tags/v7.0.1...v7.0.2

Changelog: https://github.com/languitar/autosuspend/releases/tag/v7.0.2
2024-10-13 18:46:39 -07:00
github-actions[bot]
bf97df9c1c
Merge staging-next into staging 2024-10-13 00:15:51 +00:00
Adam Stephens
1b0fea21df
audiobookshelf: 2.13.4 -> 2.14.0 2024-10-10 13:33:13 +00:00
Emily
e694240f77 Merge staging-next into staging 2024-10-10 01:23:52 +01:00
Robert Schütz
e587ef535d authentik: use npm --version 2024-10-05 11:23:49 -07:00
Guillaume Maudoux
ced27bf29e
autoPatchelfHook: expose script as top level package (#340162) 2024-09-30 10:03:28 +02:00
OTABI Tomoya
a35ae0a257
autotrash: move to pkgs/by-name and include manpage (#343855) 2024-09-29 10:17:02 +09: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
5ae5e0df3b
autologin: init at 1.0.0 (#340557) 2024-09-23 22:45:27 +08:00
MithicSpirit
5afc0a2d7d
autotrash: move to pkgs/by-name 2024-09-23 09:47:52 -04:00
beviu
d8eefe5655
autologin: init at 1.0.0 2024-09-23 03:15:20 +02:00
R. Ryantm
bcb2ba85b2 autosuspend: 7.0.0 -> 7.0.1 2024-09-22 19:14:44 +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
Adam C. Stephens
d3a722f3db
audiobookshelf: 2.13.3 -> 2.13.4 (#341998) 2024-09-15 08:26:04 -04: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
Martin Joerg
23d27309ef audiobookshelf: 2.13.3 -> 2.13.4
https://github.com/advplyr/audiobookshelf/releases/tag/v2.13.4
https://github.com/advplyr/audiobookshelf/compare/refs/tags/v2.13.3...refs/tags/v2.13.4
2024-09-15 07:59:37 +00:00
Pol Dellaiera
b7fbcf971a
auto-changelog: 2.4.0 -> 2.5.0
diff: https://github.com/cookpete/auto-changelog/compare/v2.4.0...v2.5.0
changelog: https://github.com/cookpete/auto-changelog/blob/master/CHANGELOG.md#v250
2024-09-12 08:47:15 +02:00
Robert Scott
3da382ed8b
authentik: 2024.6.1 -> 2024.6.4 (#340543) 2024-09-08 22:23:26 +01:00
Robert Scott
4cf21a33f8 authentik: 2024.6.1 -> 2024.6.4
addresses CVE-2024-42490
2024-09-08 17:05:18 +01:00
Sefa Eyeoglu
567bd7c6a6
autoPatchelfHook: expose script as top level package
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-09-08 15:57:53 +02:00
Rémi NICOLE
e2938467e6
auto-cpufreq: 2.3.0 -> 2.4.0 (#339771) 2024-09-08 08:08:29 +00:00
isabel
e2f37614e1
auto-cpufreq: 2.3.0 -> 2.4.0 2024-09-05 12:09:05 +01:00
R. Ryantm
d8abce2039 audiobookshelf: 2.13.2 -> 2.13.3 2024-09-05 07:46:29 +00:00
Doron Behar
39f28adb19 autotools-language-server: fix build with old tree-sitter 0.21 2024-09-04 22:37:06 +03:00
Martin Joerg
01a7298103 audiobookshelf: 2.12.3 -> 2.13.2
fixes CVE-2024-43797

https://github.com/advplyr/audiobookshelf/releases/tag/v2.13.0
https://github.com/advplyr/audiobookshelf/releases/tag/v2.13.1
https://github.com/advplyr/audiobookshelf/releases/tag/v2.13.2
https://github.com/advplyr/audiobookshelf/compare/v2.13.2..v2.12.3
2024-09-02 12:23:32 +00:00
Martin Joerg
047dd2576c audiobookshelf: use built-in mechanism to skip binaries check 2024-09-02 12:23:31 +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