Commit Graph

6565 Commits

Author SHA1 Message Date
R. Ryantm
b1a672a006 kodiPackages.jellyfin: 1.0.4 -> 1.0.5 2024-08-12 01:11:22 +00:00
R. Ryantm
b8b44ee053 gtk-pipe-viewer: 0.5.1 -> 0.5.2 2024-08-12 01:03:41 +00:00
github-actions[bot]
b94e45ea07
Merge staging-next into staging 2024-08-11 06:01:44 +00:00
Pol Dellaiera
37a17e3722
Merge pull request #333382 from r-ryantm/auto-update/filebot
filebot: 5.1.3 -> 5.1.4
2024-08-11 00:33:44 +02:00
Pol Dellaiera
a843494d01
Merge pull request #333383 from r-ryantm/auto-update/openshot-qt
openshot-qt: 3.1.1 -> 3.2.1
2024-08-11 00:33:30 +02:00
Donovan Glover
55fea4ee8a
mpvScripts: remove trailing period from meta.description
Note that long-term we should automate this since there have been a lot
of unintentional additions since https://github.com/NixOS/nixpkgs/pull/317959
2024-08-10 17:25:05 -04:00
Donovan Glover
ac808bfc7d
Merge pull request #330944 from olmokramer/mpv-scripts-occivink
mpvScripts: Make more of occivink's scripts available
2024-08-10 21:07:01 +00:00
Olmo Kramer
60c9ceb3e6
mpvScripts.encode: init at 0-unstable-2024-01-11 2024-08-10 20:37:21 +02:00
Olmo Kramer
1aea8cb834
mpvScripts.crop: init at 0-unstable-2024-01-11 2024-08-10 20:36:31 +02:00
éclairevoyant
cd407c80da
shotcut: move to by-name 2024-08-10 12:13:23 -04:00
Pavel Sobolev
4ae4064ff7
subtitleedit: move to pkgs/by-name 2024-08-10 17:25:01 +03:00
Pavel Sobolev
5f5682819a
subtitleedit: reformat 2024-08-10 17:24:33 +03:00
R. Ryantm
b37576faa4 openshot-qt: 3.1.1 -> 3.2.1 2024-08-09 07:05:36 +00:00
R. Ryantm
c5759d4b1f filebot: 5.1.3 -> 5.1.4 2024-08-09 07:02:46 +00:00
R. Ryantm
a3fe5ac214 obs-studio-plugins.obs-vertical-canvas: 1.4.7 -> 1.4.8 2024-08-09 02:08:50 +00:00
Peder Bergebakken Sundt
dfbc165dc7 treewide: remove nested let-in 2024-08-09 03:58:35 +02:00
github-actions[bot]
4b7471c330
Merge staging-next into staging 2024-08-07 12:01:49 +00:00
R. Ryantm
54da69fc9a vdrPlugins.softhddevice: 2.3.6 -> 2.3.7 2024-08-07 06:24:26 +00:00
github-actions[bot]
977d1b98b7
Merge staging-next into staging 2024-08-07 00:02:49 +00:00
Atemu
c9dd3fb1a3
Merge pull request #331855 from pbsds/fix-nix-build-top-1722623704
treewide: remove hardcoded /build
2024-08-07 00:54:44 +02:00
Marcus Ramberg
0beb739f92
Merge pull request #331568 from emilazy/push-nxpypquxrpmk
mplayer: unstable-2022-02-03 -> 1.5-unstable-2024-07-03
2024-08-07 00:31:00 +02:00
R. Ryantm
5f2b6c65b7 mpvScripts.thumbfast: 0-unstable-2023-12-08 -> 0-unstable-2024-08-02 2024-08-06 09:08:51 +00:00
Donovan Glover
dd34fb5e69
Merge pull request #332008 from lunik1/mpv-playlistmanager_0-unstable-2024-07-28
mpvScripts.mpv-playlistmanager: 0-unstable-2024-02-26 -> 0-unstable-2024-07-28
2024-08-05 12:49:45 +00:00
Donovan Glover
434c79ecd7
Merge pull request #331466 from luftmensch-luftmensch/mpvScripts.modernx-zydezu_0.3.6.5
mpvScripts.modernx-zydezu: 0.3.6 -> 0.3.6.6
2024-08-05 12:48:37 +00:00
tomberek
35a417c46a
Merge pull request #330514 from r-ryantm/auto-update/obs-studio-plugins.obs-vertical-canvas
obs-studio-plugins.obs-vertical-canvas: 1.4.5 -> 1.4.7
2024-08-04 14:36:29 -04:00
Guillaume Girol
8e414257f2
Merge pull request #331872 from emilazy/push-oxrvsltlmwqk
bombono: 1.2.4 -> 1.2.4-unstable-2022-02-06
2024-08-03 21:50:55 +02:00
Philip Taron
8a76c2c8f4
Merge pull request #330657 from emilazy/push-spxtzwyxtmvp
bino3d: remove LTO workaround
2024-08-03 09:29:59 -07:00
lunik1
462d639759
mpvScripts.mpv-playlistmanager: 0-unstable-2024-02-26 -> 0-unstable-2024-07-28 2024-08-03 15:27:23 +01:00
Ryan Omasta
8a5184b51f freetube: 0.21.2 -> 0.21.3 2024-08-03 14:24:14 +02:00
adisbladis
e0816431a2 treewide: Pass self when overriding Python
Otherwise references to the Python interpreter inside the set are wrong, as demonstrated by:
``` nix
with import <nixpkgs> { };
let
  python' = python3.override {
    packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337";  }); };
  };
in python'.pkgs.python.pkgs.requests
```
which returns the _non_ overriden requests.

And the same with `self`:
```
with import <nixpkgs> { };
let
  python' = python3.override {
    self = python';
    packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337";  }); };
  };
in python'.pkgs.python.pkgs.requests
```
which returns the overriden requests.

This can manifest itself as file collisions when constructing environments or as subtly incorrect dependency graphs.
2024-08-03 12:18:56 +12:00
Emily
ef150d021c bombono: 1.2.4 -> 1.2.4-unstable-2022-02-06
Includes all the fixes we previously bundled AUR patches for, and
with another PR from the same author, works with FFmpeg 6.
2024-08-03 00:09:55 +01:00
Peder Bergebakken Sundt
61242375c1 kodiPackages.jellyfin: remove hardcoded /build 2024-08-02 23:45:54 +02:00
Peder Bergebakken Sundt
211b0f55b6 kodiPackages.jellycon: remove hardcoded /build 2024-08-02 23:45:54 +02:00
tomberek
cea41e28ae
Merge pull request #323384 from qubitnano/handbrake
handbrake: 1.8.0 -> 1.8.1
2024-08-02 02:33:13 -04:00
Thiago Kenji Okada
ee3b6d42e2
Merge pull request #321056 from atorres1985-contrib/qmplay2
qmplay2: 24.04.07 -> 24.06.16
2024-08-02 03:18:23 +01:00
Emily
83b327fd22 ccextractor: move to pkgs/by-name 2024-08-01 20:57:54 +01:00
Emily
077f8d29bb mplayer: unstable-2022-02-03 -> 1.5-unstable-2024-07-03
Includes fixes for FFmpeg 6. It seems like it will require work for
7, though.
2024-08-01 18:11:13 +01:00
luftmensch-luftmensch
39cdafa2c9
mpvScripts.modernx-zydezu: 0.3.6 -> 0.3.6.6 2024-08-01 13:06:23 +02:00
Jörg Thalheim
482515715d
Merge pull request #330801 from luftmensch-luftmensch/mpvScripts.modernx-zydezu_0.3.6
mpvScripts.modernx-zydezu: 0.3.5.5 -> 0.3.6
2024-07-31 23:29:20 +02:00
Mynacol
bae4cbbdb8 kodi: Add meta.mainProgram
So users can leverage `lib.getExe` on Kodi.
2024-07-31 16:10:56 +02:00
Aaron Andersen
9f9b545807
Merge pull request #330780 from r-ryantm/auto-update/kodiPackages.pvr-vdr-vnsi
kodiPackages.pvr-vdr-vnsi: 21.1.1 -> 21.1.2
2024-07-30 22:25:28 -04:00
Aaron Andersen
3dc351c654
Merge pull request #330781 from r-ryantm/auto-update/kodiPackages.pvr-iptvsimple
kodiPackages.pvr-iptvsimple: 21.8.4 -> 21.8.5
2024-07-30 22:24:34 -04:00
Aaron Andersen
4dd0c9e2ef
Merge pull request #330798 from r-ryantm/auto-update/kodiPackages.pvr-hts
kodiPackages.pvr-hts: 21.2.4 -> 21.2.5
2024-07-30 22:23:45 -04:00
Peder Bergebakken Sundt
92ba3be525
Merge pull request #325764 from austinbutler/lightworks-146752
lightworks: 2023.2-146240 -> 2023.2-146752
2024-07-29 23:34:25 +02:00
luftmensch-luftmensch
9d38caf2ad
mpvScripts.modernx-zydezu: 0.3.5.5 -> 0.3.6 2024-07-29 09:10:09 +02:00
R. Ryantm
15b92d6654 kodiPackages.pvr-hts: 21.2.4 -> 21.2.5 2024-07-29 06:54:31 +00:00
R. Ryantm
6ac8f5c13c kodiPackages.pvr-iptvsimple: 21.8.4 -> 21.8.5 2024-07-29 05:36:43 +00:00
R. Ryantm
7e45f8f9c4 kodiPackages.pvr-vdr-vnsi: 21.1.1 -> 21.1.2 2024-07-29 05:35:32 +00: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
Austin Butler
39fba22f3e lightworks: 2023.2-146240 -> 2023.2-146752 2024-07-28 17:46:57 -07:00
Emily
a4eb4b0a62 bino3d: remove LTO workaround
This is unnecessary now that #19098 is fixed.
2024-07-28 15:06:23 +01:00
K900
24076029d2 Merge remote-tracking branch 'origin/master' into staging-next 2024-07-28 01:04:35 +03:00
R. Ryantm
cb71a7512a obs-studio-plugins.obs-vertical-canvas: 1.4.5 -> 1.4.7 2024-07-27 21:11:40 +00:00
zhoufanjin
99da330f23
treewide: fix some comments (#330407)
Signed-off-by: zhoufanjin <shuangcui@live.cn>
2024-07-27 22:05:18 +08:00
Vladimír Čunát
64c6a981fe
Merge branch 'master' into staging-next 2024-07-27 09:18:58 +02:00
Jörg Thalheim
b5c29e7af0
Merge pull request #330099 from ryand56/update-freetube
freetube: 0.21.1 -> 0.21.2
2024-07-26 20:22:52 +02:00
Martin Weinelt
93f4195fe0
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
- pkgs/applications/graphics/seamly2d/default.nix
2024-07-26 18:05:04 +02:00
Aleksana
577a9c43f3
Merge pull request #330042 from Sigmanificient/remove-leading-space-description
treewide: remove trailing space in description
2024-07-26 23:48:02 +08:00
Aleksana
84a53ad8e2
Merge pull request #328741 from Sigmanificient/remove-unused-arguments-pkgs-app
pkgs/applications: remove unused arguments
2024-07-26 22:05:49 +08:00
Anderson Torres
8d69d77244 qmplay2: migrate to by-name 2024-07-26 09:19:37 -03:00
Anderson Torres
9e0f47d6dc qmplay2: prepare to by-name migration
- get rid of libsForQt5 indirection
- postFixup instead of postInstall
- meta.mainProgram
2024-07-26 09:19:36 -03:00
K900
26801aa449 Merge remote-tracking branch 'origin/master' into staging-next 2024-07-26 14:31:21 +03:00
Sigmanificient
2ee703dccb pkgs/applications: remove unused arguments 2024-07-26 11:36:49 +02:00
Sigmanificient
6dd44107ac treewide: remove unused lib (and other) arguments 2024-07-26 11:18:09 +02:00
Ryan Omasta
8f509ee748
freetube: 0.21.1 -> 0.21.2 2024-07-26 03:02:00 -06:00
Franz Pletz
a5334f1481
Merge pull request #329853 from r-ryantm/auto-update/obs-studio 2024-07-26 09:14:42 +02:00
K900
1410c766c8 Merge remote-tracking branch 'origin/master' into staging-next 2024-07-26 08:41:08 +03:00
Sigmanificient
543cd40ecc treewide: remove trailing space in description
Done using `grep -rP 'description\s+=\s+"[^"]+[ ]";' | cut -d ':' -f 1 |
xargs -i nvim {}` and sorting the opened files by hand, avoiding
generated packages list
2024-07-26 03:38:50 +02:00
R. Ryantm
0c7b6c65b9 vdrPlugins.softhddevice: 2.3.5 -> 2.3.6 2024-07-25 19:18:07 +00:00
R. Ryantm
d44698604d obs-studio: 30.2.0 -> 30.2.2 2024-07-25 08:22:36 +00:00
github-actions[bot]
7208220b63
Merge master into staging-next 2024-07-24 18:01:18 +00:00
Ivan Trubach
90fbf71333 treewide: remove maintainer goibhniu
Inactive in Nixpkgs since 2018 (and a single PR in 2022).
https://github.com/NixOS/nixpkgs/issues?q=author%3Acillianderoiste
2024-07-24 13:38:22 +03:00
Artturin
60e9cffe2c Merge branch 'master' into staging-next 2024-07-22 22:53:31 +03:00
Christian Kögler
e42a04d5e1
Merge pull request #329083 from r-ryantm/auto-update/vdr
vdr: 2.6.8 -> 2.6.9
2024-07-22 16:35:46 +02:00
Peder Bergebakken Sundt
1bd0c80c3c
Merge pull request #327642 from emilazy/push-xkppnuxutmyo
bino3d: 1.6.8 -> 2.2
2024-07-22 15:36:29 +02:00
Bobby Rong
3e9b9159cb
Merge pull request #327144 from bobby285271/upd/cinnamon-xapps-by-name
Move various packages out of cinnamon scope
2024-07-22 21:33:16 +08:00
R. Ryantm
32ea32eb1e vdr: 2.6.8 -> 2.6.9 2024-07-22 06:44:55 +00:00
R. Ryantm
f30847eedd hypnotix: 4.5 -> 4.6 2024-07-22 13:37:43 +08:00
Artturin
574e1892a4
Merge pull request #328524 from babeuh/multiviewer-for-f1--1.32.1->1.35.2
multiviewer-for-f1: 1.32.1 -> 1.35.2
2024-07-22 06:43:00 +03:00
Bobby Rong
888e32bea1
xed-editor, xplayer: Move to by-name
The previous commit requires this commit to make by-name check happy.
2024-07-22 01:02:16 +08:00
Bobby Rong
508637b0e3
xapp: Move from cinnamon scope to top-level
* The timeshift changes are used to make by-name check happy.
* More by-name changes in the next commit.
2024-07-22 01:02:16 +08:00
Bobby Rong
4e7cf17a36
python3.pkgs.python-xapp: Renamed from python3.pkgs.xapp
* The upstream meson.build project name is python-xapp.
* It is too common to require both the xapp and python-xapp in the same package and as a
  result too easy to result in wrong usages like the one mentioned in pull request 213561.
2024-07-22 01:02:15 +08:00
R. Ryantm
69321d126e kodiPackages.pdfreader: 2.0.2 -> 2.0.3 2024-07-21 13:12:12 +00:00
github-actions[bot]
968bf02dc2
Merge master into staging-next 2024-07-21 12:01:16 +00:00
R. Ryantm
5a861ed43f mpvScripts.mpv-webm: 0-unstable-2024-05-13 -> 0-unstable-2024-07-20 2024-07-21 02:31:24 +00:00
github-actions[bot]
e533bfc8da
Merge master into staging-next 2024-07-20 18:01:23 +00:00
Pol Dellaiera
f38f925793
Merge pull request #328565 from r-ryantm/auto-update/obs-studio-plugins.obs-move-transition
obs-studio-plugins.obs-move-transition: 3.0.1 -> 3.0.2
2024-07-20 19:33:30 +02:00
Vladimír Čunát
577f40b8a9
Merge branch 'staging' into staging-next 2024-07-20 16:12:24 +02:00
Thiago Kenji Okada
6e14bbce7b
Merge pull request #327972 from atorres1985-contrib/remove-dtzwill
Treewide: Remove dtzwill
2024-07-20 10:11:00 +01:00
Marcus Ramberg
0e53ac2ae8
Merge pull request #326722 from eclairevoyant/obs-update 2024-07-20 09:05:51 +03:00
R. Ryantm
4308f96052 obs-studio-plugins.obs-move-transition: 3.0.1 -> 3.0.2 2024-07-20 01:39:31 +00:00
Nick Cao
a2398e660f
Merge pull request #328458 from r-ryantm/auto-update/obs-studio-plugins.obs-vkcapture
obs-studio-plugins.obs-vkcapture: 1.5.0 -> 1.5.1
2024-07-19 18:30:01 -04:00
Raphael Le Goaller
8cf3ade837
multiviewer-for-f1: 1.32.1 -> 1.35.2 2024-07-19 22:45:35 +02:00
éclairevoyant
079489e456
obs-studio: 30.1.2 -> 30.2.0 2024-07-19 12:06:41 -04:00
R. Ryantm
1b2bb7a81a obs-studio-plugins.obs-vkcapture: 1.5.0 -> 1.5.1 2024-07-19 15:09:49 +00:00
R. Ryantm
4f266b1338 mpvScripts.videoclip: 0-unstable-2024-05-26 -> 0-unstable-2024-07-18 2024-07-19 03:36:00 +00:00
Martin Weinelt
983077457f
Merge remote-tracking branch 'origin/staging-next' into staging
Conflicts:
-	pkgs/development/python-modules/uvcclient/default.nix
-	pkgs/development/tools/rust/rust-analyzer/default.nix
2024-07-18 12:35:33 +02:00
Nick Cao
c1f7311dc6
Merge pull request #327883 from r-ryantm/auto-update/mpvScripts.sponsorblock
mpvScripts.sponsorblock: unstable-2023-01-30 -> 0-unstable-2023-01-30
2024-07-17 16:29:54 -04:00
Anderson Torres
6dba240f79 treewide: remove dtzWill as maintainer [orphans]
Since theey is not active in a long span of time.

All the packages in this commit are now orphan.
2024-07-17 13:52:45 -03:00
Dilip
d99c367e1e dra-cla: unstable-2024-02-07 -> 0-unstable-2024-06-07 2024-07-17 21:12:54 +05:30
R. Ryantm
23d800f32f mpvScripts.sponsorblock: unstable-2023-01-30 -> 0-unstable-2023-01-30 2024-07-17 10:42:11 +00:00
R. Ryantm
8743b938b1 obs-studio-plugins.waveform: 1.8.0 -> 1.8.1 2024-07-17 01:33:53 +00:00
github-actions[bot]
4c086d8ee0
Merge staging-next into staging 2024-07-17 00:03:16 +00:00
Pol Dellaiera
e133d5e878
Merge pull request #327012 from shackra/fix-issue-326505
obs-studio-plugins.obs-source-record: 0.3.2 → 0.3.4
2024-07-16 21:00:49 +02:00
Artturin
a516ea8c99 Merge branch 'staging-next' into staging 2024-07-16 19:07:48 +03:00
Emily
fc83a9b97d bino3d: 1.6.8 -> 2.2
There was a comprehensive upstream rework that dropped many
third‐party dependencies in favour of Qt 6 modules (including
FFmpeg 4, which is what motivated me to do this). Accordingly,
comprehensively rework the package for the update.
2024-07-16 13:53:02 +01:00
Christian Kögler
5dd0b7ee38
Merge pull request #327598 from r-ryantm/auto-update/vdrPlugins.softhddevice
vdrPlugins.softhddevice: 2.3.4 -> 2.3.5
2024-07-16 11:32:47 +02:00
R. Ryantm
85fbe210ba vdrPlugins.softhddevice: 2.3.4 -> 2.3.5 2024-07-16 08:49:06 +00:00
Aaron Andersen
9731228af4
Merge pull request #327480 from pks-t/pks-kodi-sendtokodi-remove-youtube_dl-dependency
kodiPackages.sendtokodi: remove dependency on youtube_dl
2024-07-16 04:11:48 -04:00
Aaron Andersen
5276974df2
Merge pull request #327479 from pks-t/pks-kodi-inputstreamhelper-fix-python-3-12-compat
kodiPackages.inputstreamhelper: fix compatibility with Python 3.12
2024-07-16 04:10:36 -04:00
Patrick Steinhardt
cef5e7801a kodiPackages.inputstreamhelper: fix compatibility with Python 3.12
The inputstreamhelper Kodi script depends on the "distutils" package,
which has been removed with Python 3.12. This has since been fixed
upstream, but wasn't yet released. Backport the patch.
2024-07-15 23:09:36 +02:00
Patrick Steinhardt
788306fc82 kodiPackages.sendtokodi: remove dependency on youtube_dl
The sendtokodi plugin for Kodi can use both yt-dlp and youtube_dl to
play back various URLs. Both of these packages have been susceptible to
CVE-2024-38519. But while yt-dlp is still maintained and was patched,
youtube_dl is unmaintained and thus known-vulnerable.

Patch out the dependency on youtube_dl so that sendtokodi will only ever
use yt-dlp to resolve URLs.
2024-07-15 22:46:48 +02:00
Aaron Andersen
d35e2a3aea
Merge pull request #327094 from minijackson/kodiPackages-jellyfin-1.0.4
kodiPackages.jellyfin: 1.0.3 -> 1.0.4
2024-07-15 16:04:17 -04:00
Aaron Andersen
23a62d05e2
Merge pull request #325934 from dschrempf/tvthek-1
kodiPackages.orftvthek: 0.12.12 -> 1.0.2+matrix.1
2024-07-15 15:51:48 -04:00
Sandro
99fe5240da
Merge pull request #325811 from Naxdy/work/blackmagic 2024-07-15 16:41:11 +02:00
Dominik Schrempf
deeb2477f5
kodiPackages.orftvthek: 0.12.12 -> 1.0.2+matrix.1 2024-07-15 08:35:12 +02:00
Naxdy
f634371d21
{blackmagic-desktop-video,decklink}: init at 14.0.1a2 2024-07-14 20:42:50 +02:00
github-actions[bot]
31817540ee
Merge staging-next into staging 2024-07-14 18:01:37 +00:00
Aleksana
3ea85ac338
Merge pull request #326827 from Aleksanaa/trivial-sha256-fix
treewide: sha256 -> hash attribute for gitlab.com,codeberg.org fetchers
2024-07-14 22:40:25 +08:00
Nick Cao
0c4d5ed3b2
Merge pull request #326879 from r-ryantm/auto-update/streamlink
streamlink: 6.8.2 -> 6.8.3
2024-07-14 10:36:54 -04:00
Minijackson
fe4e089932
kodiPackages.jellyfin: 1.0.3 -> 1.0.4
fixes missing distutils module
2024-07-14 14:14:43 +02:00
github-actions[bot]
0d7af056e2
Merge staging-next into staging 2024-07-14 12:02:04 +00:00
aleksana
592e3845c4 treewide: sha256 -> hash attribute for fetchgit 2024-07-14 19:10:08 +08:00
Michele Guerini Rocco
db378e1f1b
Merge pull request #326979 from r-ryantm/auto-update/mkvtoolnix
mkvtoolnix: 85.0 -> 86.0
2024-07-14 10:46:41 +02:00
Vladimír Čunát
211398c03e
Merge branch 'staging-next' into staging 2024-07-14 08:35:35 +02:00
Jorge Javier Araya Navarro
b39d7984c1 obs-studio-plugins.obs-source-record: add maintainer shackra 2024-07-13 22:28:41 -06:00
Jorge Javier Araya Navarro
8f10292335 obs-studio-plugins.obs-source-record: 0.3.2 -> 0.3.4 2024-07-13 22:24:12 -06:00
R. Ryantm
cf80bd7819 mkvtoolnix: 85.0 -> 86.0 2024-07-14 01:41:16 +00:00
R. Ryantm
6aef61c2b0 streamlink: 6.8.2 -> 6.8.3 2024-07-13 18:17:05 +00:00
aleksana
07c1bc2034 treewide: sha256 -> hash attribute for pypi fetchers 2024-07-14 01:25:22 +08:00
Guillaume Girol
98f7683671
Merge pull request #324585 from timschumi/gsr-2024-07-04
gpu-screen-recorder{,-gtk}: Update to unstable-2024-07-05 (+ systemd unit and capabilities)
2024-07-13 17:05:00 +02:00
aleksana
1a89942243 treewide: sha256 -> hash attribute for gitlab.com fetchers 2024-07-13 22:28:37 +08:00
Jörg Thalheim
5f75a58cc8
Merge pull request #326747 from toh995/remove-youtube-dl-from-pipe-viewer
pipe-viewer: remove dependency on youtube-dl
2024-07-13 10:26:51 +02:00
toh995
8eb13e42aa pipe-viewer: remove dependency on youtube-dl
youtube-dl was marked as "vulnerable" in
https://github.com/NixOS/nixpkgs/pull/325371.
We can rely on yt-dlp instead.
2024-07-12 23:59:18 -07:00
éclairevoyant
0e5c272e42
treewide: fix uses of repo = finalAttrs.pname 2024-07-12 20:18:43 -04:00
Jan Tojnar
1275c3f884 Merge branch 'staging-next' into staging 2024-07-12 21:36:23 +02:00
Tim Schumacher
c1c9d38eba gpu-screen-recorder-gtk: 3.7.6 -> unstable-2024-07-05 2024-07-12 21:30:17 +02:00
Tim Schumacher
cddf0244b3 gpu-screen-recorder: Add program module for creating setcap wrappers
Co-authored-by: oddlama <oddlama@oddlama.org>
Co-authored-by: ash <ash@sorrel.sh>
2024-07-12 21:30:17 +02:00
Tim Schumacher
223ea67b95 gpu-screen-recorder: Enable installing systemd user units 2024-07-12 21:23:03 +02:00
Tim Schumacher
0193a0de27 gpu-screen-recorder: unstable-2024-05-21 -> unstable-2024-07-05 2024-07-12 21:23:03 +02:00
R. Ryantm
1f7897b9cd vdr: 2.6.7 -> 2.6.8 2024-07-12 15:34:54 +00:00
github-actions[bot]
b66506a79e
Merge staging-next into staging 2024-07-12 12:01:44 +00:00
éclairevoyant
fd6a510ec7
Merge pull request #326211 from gepbird/openshot-fix
openshot-qt: fix build by pinning python to 3.11
2024-07-12 07:06:02 +00:00
Vladimír Čunát
2c053848df
Merge branch 'master' into staging 2024-07-11 22:05:05 +02:00
Aleksana
a64cb9b64d
Merge pull request #325326 from al3xtjames/gpac-darwin
gpac: add support for darwin
2024-07-11 21:22:17 +08:00
Gutyina Gergő
4bcaef80a3
openshot-qt: fix build by pinning python to 3.11, update sip 2024-07-11 09:28:53 +02:00
Airradda
7f6900dfef freetube: 0.21.0 -> 0.21.1 2024-07-10 20:39:53 -05:00
Vladimír Čunát
4c09ae2416
Merge branch 'staging-next' into staging 2024-07-08 10:43:15 +02:00
Martin Weinelt
a3f0f820f5
Merge pull request #325260 from mweinelt/frigate-fixes
frigate: pin to python3.11, support mpl 3.9.0
2024-07-08 01:22:25 +02:00
Weijia Wang
7a8b50fd0f
Merge pull request #325171 from r-ryantm/auto-update/mpvScripts.manga-reader
mpvScripts.manga-reader: 0-unstable-2024-03-17 -> 0-unstable-2024-07-05
2024-07-07 20:07:59 +02:00
Alex James
d721607e4b
gpac: add support for darwin
The cctools dependency is needed for libtool[^1], while the Carbon
dependency comes from carbon_hook.c[^2].

[^1]: df8121066c/src/Makefile (L377)
[^2]: df8121066c/applications/gpac/carbon_hook.c (L36).
2024-07-07 12:48:08 -05:00
Thomas Gerbet
9b60aa34d8
gpac: 2.2.1 -> 2.4.0, clear knownVulnerabilities list (#305402)
* gpac: 2.2.1 -> 2.4.0, clear knownVulnerabilities list

Changes:
https://github.com/gpac/gpac/releases/tag/v2.4.0

* Apply suggestions from code review

---------

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2024-07-07 16:44:16 +02:00
Martin Weinelt
5831972dc6
frigate: pin to python3.11, support mpl 3.9.0
and backport a patch that prevents crashes if /run/secrets exists, but
is unaccessible to frigate.

Closes: #325228
2024-07-07 15:49:26 +02:00
Nick Cao
3f5eec03ab
Merge pull request #325100 from DeeUnderscore/update/streamlink-6.8.2
streamlink: 6.8.1 -> 6.8.2
2024-07-07 09:44:11 -04:00
R. Ryantm
488e48d1cf mpvScripts.manga-reader: 0-unstable-2024-03-17 -> 0-unstable-2024-07-05 2024-07-07 04:24:03 +00:00
Dee Anzorge
2ee78ef931 streamlink: 6.8.1 -> 6.8.2
Changes:
https://github.com/streamlink/streamlink/releases/tag/6.8.2
2024-07-06 20:00:55 +02:00
R. Ryantm
33fc29f20a kodiPackages.pvr-hts: 21.2.3 -> 21.2.4 2024-07-06 13:53:50 +00:00
Martin Weinelt
e7b1ee45cf
Merge remote-tracking branch 'origin/staging-next' into staging
Conflicts:
- pkgs/tools/misc/watchlog/default.nix
2024-07-06 01:52:35 +02:00
Martin Weinelt
d9610a9f2e
Merge remote-tracking branch 'origin/master' into staging-next 2024-07-06 01:51:14 +02:00
Nick Cao
ebbca14090
Merge pull request #324733 from r-ryantm/auto-update/mpvScripts.memo
mpvScripts.memo: 0-unstable-2023-10-31 -> 0-unstable-2024-07-02
2024-07-05 15:39:34 -04:00
github-actions[bot]
d6339576fb
Merge master into staging-next 2024-07-05 18:01:19 +00:00
Christian Kögler
9492f40d05
Merge pull request #324854 from r-ryantm/auto-update/vdrPlugins.softhddevice
vdrPlugins.softhddevice: 2.3.3 -> 2.3.4
2024-07-05 18:50:12 +02:00
R. Ryantm
76d5eb24da vdrPlugins.softhddevice: 2.3.3 -> 2.3.4 2024-07-05 16:05:49 +00:00
K900
49c4747aaa
Merge pull request #324669 from K900/kodi-next
[staging-next] kodi: fix build with Python 3.12
2024-07-05 17:27:47 +03:00
Martin Weinelt
d154537783
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
- pkgs/development/python-modules/duckduckgo-search/default.nix
2024-07-05 15:48:02 +02:00
José Romildo Malaquias
904c8cb22b
Merge pull request #324784 from r-ryantm/auto-update/mpc-qt
mpc-qt: 23.12 -> 24.06
2024-07-05 10:21:10 -03:00
R. Ryantm
b0e004050c mpc-qt: 23.12 -> 24.06 2024-07-05 10:55:08 +00:00
R. Ryantm
f4312077ee mpvScripts.memo: 0-unstable-2023-10-31 -> 0-unstable-2024-07-02 2024-07-05 05:46:59 +00:00
github-actions[bot]
30cfd4445f
Merge master into staging-next 2024-07-05 00:02:21 +00:00
Tadeo Kondrak
7239208ca6 treewide: remove maintainer tadeokondrak 2024-07-04 15:04:04 -06:00
K900
17d592a64f kodi: fix build with Python 3.12 2024-07-04 23:35:42 +03:00
github-actions[bot]
e14242d985
Merge staging-next into staging 2024-07-04 12:01:37 +00:00
Vladimír Čunát
44b36397c2
Merge branch 'master' into staging-next
Conflicts - GitHub wouldn't auto-resolve them but my local git did:
	pkgs/development/cuda-modules/cuda/overrides.nix
2024-07-04 10:10:22 +02:00
Weijia Wang
14dd23e544
Merge pull request #323116 from r-ryantm/auto-update/mpvScripts.mpvacious
mpvScripts.mpvacious: 0.35 -> 0.36
2024-07-04 00:56:19 +02:00
aleksana
a9709c299b treewide: change cargoSha256 with SRI hash to cargoHash 2024-07-03 21:53:11 +08:00
github-actions[bot]
35bda1b414
Merge staging-next into staging 2024-07-03 12:01:44 +00:00
github-actions[bot]
0983fe3e50
Merge master into staging-next 2024-07-03 12:01:17 +00:00
R. Ryantm
15927edc6d memento: 1.4.0 -> 1.4.1 2024-07-03 11:59:47 +02:00
github-actions[bot]
78cea2a152
Merge staging-next into staging 2024-07-03 00:04:34 +00:00
github-actions[bot]
d77a3adc09
Merge master into staging-next 2024-07-03 00:02:45 +00:00
Ryan Lahfa
d387fafe2f
Merge pull request #324101 from hexchen/drop-hexchen
maintainers: remove myself
2024-07-02 23:38:02 +02:00
Weijia Wang
89195a5313 Merge branch 'staging-next' into staging 2024-07-02 22:23:14 +02:00
Weijia Wang
f5a7e092f3 Merge branch 'master' into staging-next 2024-07-02 22:22:02 +02:00
Nick Cao
8f2987820e
Merge pull request #323975 from r-ryantm/auto-update/obs-studio-plugins.obs-vertical-canvas
obs-studio-plugins.obs-vertical-canvas: 1.4.4 -> 1.4.5
2024-07-02 15:53:28 -04:00
github-actions[bot]
aeba07ddb1
Merge staging-next into staging 2024-07-02 18:03:03 +00:00
hexchen
2104f810b0 decklink, blackmagic-desktop-video: drop package and module
I am the singular maintainer for these packages. They are difficult to
maintain and are going to start to bitrot pretty much as soon as BMD
releases new software versions. Therefore, I am not only removing myself
as the maintainer but dropping them entirely.
2024-07-02 17:26:03 +00:00
K900
ac42e4ac39 Merge remote-tracking branch 'origin/master' into staging-next 2024-07-02 19:52:45 +03:00
Aleksana
6a4a7c4ffa
Merge pull request #323913 from r-ryantm/auto-update/clapper
clapper: 0.6.0 -> 0.6.1
2024-07-02 23:58:21 +08:00
github-actions[bot]
5cfda25a07
Merge staging-next into staging 2024-07-02 12:01:51 +00:00
Martin Weinelt
7b8429bbc4
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
- pkgs/development/python-modules/jaxtyping/default.nix
2024-07-02 12:08:49 +02:00
R. Ryantm
95071f5c28 obs-studio-plugins.obs-vertical-canvas: 1.4.4 -> 1.4.5 2024-07-02 08:29:31 +00:00
Jan Tojnar
0f56e32213
Merge pull request #319659 from jtojnar/gnome-extract
Move various packages out of gnome scope
2024-07-02 08:03:53 +02:00
Jan Tojnar
7a2c8f9c01
Merge pull request #322986 from jtojnar/gnome-vfs-dependents
Remove some gnome2 dependents
2024-07-02 08:02:51 +02:00
github-actions[bot]
d5bca87877
Merge staging-next into staging 2024-07-02 06:01:38 +00:00
K900
665f1d6183 Merge remote-tracking branch 'origin/master' into staging-next 2024-07-02 08:32:46 +03:00
R. Ryantm
833575de8f clapper: 0.6.0 -> 0.6.1 2024-07-02 00:45:29 +00:00
ckie
7d34b64eca maintainers: remove ckie
well, we failed. we have not saved nix together[0], and today's show of
utter incompetence[1] has pushed me over the edge along with many others[2]

it's been good. a lot of PRs. a lot of endless reviews.
some new friends, some old friends converted :P

cya in the next world, cuties <3

[0] https://save-nix-together.org/
[1] https://discourse.nixos.org/t/nca-member-jonringer-joint-announcement/48231
[2] https://github.com/NixOS/nixpkgs/issues?q=label%3A%228.has%3A+maintainer-list+%28update%29%22+remove+in%3Atitle+created%3A%3C2024-07-10
2024-07-02 02:40:02 +02:00
Janik H.
76cd1d2211 maintainers: drop janik
I guess my time has come as well...

With this commit, I'm not just dropping my maintainer entry, but I'm also
resigning from my duties as a board observer and NixCon project lead.
I also terminated my Summer of Nix contract today.
I'll also stop hosting the local NixOS meetup.

The only "project" I'll finish under the NixOS Foundation umbrella is
Google Summer of Code because the mentees aren't even remotely
responsible for why I'm leaving, and it would be unfair to leave them
hanging.

I'm grateful for all the things I was able to learn, for all the experiences
I could gather, and for all the friends I made along the way.
NixOS is what makes computers bearable for me, so I'll go and work on
some fork (*something something* you always meet twice in life).
2024-07-02 02:36:42 +02:00
Jan Tojnar
0fc6f66f88 gnome-common: Move from gnome scope to top-level
Most of maintained software moved from Autotools to Meson by now.
2024-07-01 08:26:45 +02:00
Jan Tojnar
d406dc972e dvdstyler: remove libgnomeui dependency
It has not been maintained in decades and is not used anyway since `configure.ac`
makes it conditional on WxWidgets using GTK 2 but we use GTK 3 now.

`configure.ac` has thumbnailing code path for GTK 3 that uses more modern
`gnome-desktop-3.0` but that is commented out.
2024-07-01 07:59:00 +02:00
Jan Tojnar
e546c90362 coriander: Remove
Hard depends on GNOME 2-era libgnomeui.
2024-07-01 07:59:00 +02:00
Someone
c5a1cae1f1
Merge pull request #275241 from Scrumplex/treewide/use-addDriverRunpath
addOpenGLRunpath: deprecate
2024-07-01 01:09:05 +00:00
Martin Weinelt
9b79a05ae1
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
- pkgs/development/python-modules/flexcache/default.nix
- pkgs/development/python-modules/flexparser/default.nix
- pkgs/development/python-modules/odp-amsterdam/default.nix
- pkgs/development/python-modules/pint/default.nix
- pkgs/development/python-modules/uncertainties/default.nix
- pkgs/top-level/python-packages.nix
2024-07-01 01:07:21 +02:00
Sefa Eyeoglu
416ba8804b
treewide: use addDriverRunpath
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-06-30 15:01:01 -04:00
Matthias Beyer
3185078385
Merge pull request #323082 from r-ryantm/auto-update/shotcut
shotcut: 24.06.02 -> 24.06.26
2024-06-30 17:19:53 +02:00
github-actions[bot]
3bb3e89f3b
Merge master into staging-next 2024-06-29 18:01:05 +00:00
qubitnano
f2b128f5b5 handbrake: 1.8.0 -> 1.8.1 2024-06-29 09:36:24 -04:00
K900
bde999c03e Merge branch 'master' into staging-next 2024-06-29 10:13:13 +03:00
éclairevoyant
243e565d75
treewide: fix name for appimages 2024-06-29 00:34:41 -04:00
Aaron Andersen
fee41890e3
Merge pull request #322630 from iynaix/bump-flirc
flirc: 3.27.10 -> 3.27.15
2024-06-28 16:25:37 -04:00
R. Ryantm
b1a609fde4 mpvScripts.mpvacious: 0.35 -> 0.36 2024-06-28 09:29:41 +00:00
R. Ryantm
32383a8027 shotcut: 24.06.02 -> 24.06.26 2024-06-28 03:47:15 +00:00
github-actions[bot]
2f3bfad6d2
Merge master into staging-next 2024-06-28 00:02:11 +00:00
Weijia Wang
cb7154e810
Merge pull request #317884 from r-ryantm/auto-update/shotcut
shotcut: 24.04.28 -> 24.06.02
2024-06-28 01:31:32 +02:00
github-actions[bot]
1bfaa6d6e1
Merge master into staging-next 2024-06-27 18:01:13 +00:00
Aleksana
fabe7e156e
Merge pull request #321342 from DeeUnderscore/update/streamlink-6.8.1
streamlink: 6.7.4 -> 6.8.1
2024-06-28 01:04:55 +08:00
Martin Weinelt
d50a1e97b1
Merge remote-tracking branch 'origin/master' into staging-next 2024-06-27 16:16:01 +02:00
R. Ryantm
a5ccc48f11 obs-studio-plugins.obs-vertical-canvas: 1.4.3 -> 1.4.4 2024-06-26 16:08:07 +00:00
Lin Xianyi
e0fb2631d1 flirc: 3.27.10 -> 3.27.15 2024-06-26 20:09:17 +08:00
github-actions[bot]
27074b7d07
Merge master into staging-next 2024-06-26 00:02:13 +00:00
Aaron Andersen
4be04c4f5d
Merge pull request #322448 from r-ryantm/auto-update/kodiPackages.youtube
kodiPackages.youtube: 7.0.7 -> 7.0.8
2024-06-25 16:54:36 -04:00
Masum Reza
e3b85fd928
Merge pull request #318137 from id3v1669/gpu-screen-recorder-gtk
gpu-screen-recorder-gtk: 3.2.5 -> 3.7.6
2024-06-26 01:12:13 +05:30
github-actions[bot]
08b5c3c46a
Merge master into staging-next 2024-06-25 18:01:20 +00:00
Atemu
194ab008e6
Merge pull request #321493 from Atemu/obs-vkcapture32
obs-vkcapture: install 32bit wrapper
2024-06-25 19:51:11 +02:00
R. Ryantm
16c0633807 kodiPackages.youtube: 7.0.7 -> 7.0.8 2024-06-25 16:13:11 +00:00
id3v1669
4b568ac22d gpu-screen-recorder-gtk: 3.2.5 -> 3.7.6 2024-06-25 23:53:14 +08:00
Martin Weinelt
de245ec4a5
Merge remote-tracking branch 'origin/master' into staging-next 2024-06-25 13:00:25 +02:00
sdaqo
94ccb581d9 memento: move qt6 libs into buildInputs instead of nativeBuildInputs 2024-06-25 11:32:43 +02:00
sdaqo
3fc72bcf16 memento: 1.2.2 -> 1.4.0 2024-06-25 11:32:43 +02:00
Michele Guerini Rocco
df7fc95708
Merge pull request #322256 from rnhmjoj/pr-mkvtoolnix
mkvtoolnix: 84.0 -> 85.0
2024-06-25 08:27:07 +02:00
rnhmjoj
eae82943a9
mkvtoolnix: 84.0 -> 85.0 2024-06-24 22:09:50 +02:00
github-actions[bot]
88140ced6d
Merge master into staging-next 2024-06-24 12:01:17 +00:00
Franz Pletz
9b075e9a9b
Merge pull request #318414 from r-ryantm/auto-update/obs-studio-plugins.advanced-scene-switcher
obs-studio-plugins.advanced-scene-switcher: 1.26.2 -> 1.26.4
2024-06-24 11:19:16 +02:00
Franz Pletz
f8cbdaf23b
Merge pull request #322072 from r-ryantm/auto-update/obs-studio-plugins.obs-teleport
obs-studio-plugins.obs-teleport: 0.7.1 -> 0.7.2
2024-06-24 11:18:15 +02:00
Herwig Hochleitner
62db0a59de
webtorrent_desktop: update and use latest electron (#320293) 2024-06-24 10:47:54 +02:00
github-actions[bot]
c1d6d547af
Merge staging-next into staging 2024-06-24 06:01:33 +00:00
Aaron Andersen
920bd704b7
Merge pull request #321976 from r-ryantm/auto-update/kodiPackages.future
kodiPackages.future: 0.18.3+matrix.1 -> 1.0.0+matrix.1
2024-06-23 22:56:15 -04:00
R. Ryantm
b534b7e5a5 obs-studio-plugins.obs-teleport: 0.7.1 -> 0.7.2 2024-06-24 00:54:35 +00:00
Martin Weinelt
2096642430
Merge remote-tracking branch 'origin/staging-next' into staging
Conflicts:
- pkgs/os-specific/windows/mingw-w64/default.nix
2024-06-23 19:09:00 +02:00
R. Ryantm
1c25bad679 kodiPackages.future: 0.18.3+matrix.1 -> 1.0.0+matrix.1 2024-06-23 14:26:16 +00:00
Nick Cao
601cd7299d
Merge pull request #319901 from MatthewCroughan/mc/ustreamer-webrtc
ustreamer: add janus-gateway webrtc support
2024-06-23 09:54:56 -04:00
Weijia Wang
3f1a954a38
Merge pull request #321842 from r-ryantm/auto-update/mpvScripts.dynamic-crop
mpvScripts.dynamic-crop: 0-unstable-2023-12-22 -> 0-unstable-2024-06-22
2024-06-23 14:19:43 +02:00
R. Ryantm
6a1b92ffc4 mpvScripts.dynamic-crop: 0-unstable-2023-12-22 -> 0-unstable-2024-06-22 2024-06-22 22:09:51 +00:00
Gaétan Lepage
119a6f8ab0
Merge pull request #321489 from GaetanLepage/deface
deface: 1.4.0 -> 1.5.0
2024-06-22 13:39:40 +02:00
Pol Dellaiera
f76a28c336
Merge pull request #321423 from r-ryantm/auto-update/freetube
freetube: 0.20.0 -> 0.21.0
2024-06-22 13:27:01 +02:00
Aaron Andersen
f9617828c1
Merge pull request #320343 from sanzoghenzo/add-kodi-skyvideoitalia
kodi-skyvideoitalia: init at 1.0.4
2024-06-21 19:53:34 -04:00
Atemu
bc3c785362 obs-vkcapture: install 32bit wrappers
obs-vkcapture supports OGL but one must preload the so. Upstream provides
wrappers for that which you're supposed to use but it's bound to a single
bitness. Install symlinks to the 32bit gamecapture with a suffix to provide
access to both.
2024-06-22 00:49:06 +02:00
Nick Cao
b8e96da1a6
Merge pull request #321352 from r-ryantm/auto-update/flowblade
flowblade: 2.16.2 -> 2.16.3
2024-06-21 17:36:51 -04:00
Andrea Ghensi
8424f1fc98 kodi-skyvideoitalia: init at 1.0.4 2024-06-21 21:37:44 +02:00
Gaetan Lepage
75a79cb882 deface: 1.4.0 -> 1.5.0
Diff: https://github.com/ORB-HD/deface/compare/refs/tags/v1.4.0...v1.5.0

Changelog: https://github.com/ORB-HD/deface/releases/tag/v1.5.0
2024-06-21 20:25:54 +02:00
github-actions[bot]
c6707a9686
Merge staging-next into staging 2024-06-21 12:01:53 +00:00
Sandro Jäckel
743d9f835d
maintainers: remove one year inactive maintainer kiwi 2024-06-21 01:38:39 -04:00
R. Ryantm
5e74178a2f freetube: 0.20.0 -> 0.21.0 2024-06-21 04:35:39 +00:00
R. Ryantm
8e31ecc0fb flowblade: 2.16.2 -> 2.16.3 2024-06-20 21:52:56 +00:00
Dee Anzorge
8696c6243a streamlink: 6.7.4 -> 6.8.1
changes:
* https://github.com/streamlink/streamlink/releases/tag/6.8.0
* https://github.com/streamlink/streamlink/releases/tag/6.8.1

Also drop the exceptiongroup dependency, as it is not needed for
Python>=3.11.
2024-06-20 22:51:33 +02:00
Nick Cao
ccb5ddadff
Merge pull request #321159 from r-ryantm/auto-update/obs-studio-plugins.obs-vertical-canvas
obs-studio-plugins.obs-vertical-canvas: 1.4.2 -> 1.4.3
2024-06-20 16:24:22 -04:00
Masum Reza
37d855d335
Merge pull request #318052 from r-ryantm/auto-update/mpvScripts.mpvacious
mpvScripts.mpvacious: 0.34 -> 0.35
2024-06-20 23:52:48 +05:30
Masum Reza
19be9b98eb
Merge pull request #319722 from Xelden/mpv-thumbnail
mpvScripts.thumbnail: 0.5.3 -> 0.5.4
2024-06-20 23:52:20 +05:30
github-actions[bot]
61f347aa76
Merge staging-next into staging 2024-06-20 06:01:23 +00:00
R. Ryantm
8e088461a1 obs-studio-plugins.obs-vertical-canvas: 1.4.2 -> 1.4.3 2024-06-20 04:38:39 +00:00
Niklas Hambüchen
dd3cf6eb69
Merge pull request #318783 from pbsds/fix-reproducible-patch-urls-1717622023
treewide: make fetchpatch urls reproducible
2024-06-20 03:01:00 +02:00
github-actions[bot]
8914dc8ee0
Merge staging-next into staging 2024-06-20 00:02:50 +00:00
R. Ryantm
7876d878cf hypnotix: 4.4 -> 4.5 2024-06-20 07:25:35 +08:00
Martin Weinelt
f822b2ba5c Merge remote-tracking branch 'origin/staging-next' into staging
Conflicts:
- pkgs/development/python-modules/langsmith/default.nix
- pkgs/development/python-modules/rich-pixels/default.nix
- pkgs/servers/teleport/generic.nix
2024-06-18 20:16:19 +02:00
K900
18705145b8
Merge pull request #318854 from javaes/jellyfin-media-player/update_from_1.10.1_to_1.11.1
jellyfin-media-player: 1.10.1 -> 1.11.1
2024-06-18 10:55:16 +03:00
Aleksana
9099881533
Merge pull request #317795 from ShamrockLee/losslesscut-bin-update
losslesscut-bin: 3.58.0 -> 3.61.1
2024-06-18 02:26:47 +08:00
matthewcroughan
1c107769c7 ustreamer: add matthewcroughan as maintainer 2024-06-17 10:47:28 +01:00
matthewcroughan
aaa7a2619a ustreamer: add janus-gateway webrtc support
Co-authored-by: Nick Cao <nickcao@nichi.co>
2024-06-17 10:46:44 +01:00
R. Ryantm
2d55fc92ec obs-studio-plugins.advanced-scene-switcher: 1.26.2 -> 1.26.4 2024-06-17 07:31:34 +00:00
Pol Dellaiera
d7124da0b8
Merge pull request #320357 from Aleksanaa/media-downloader
media-downloader: move to pkgs/by-name
2024-06-17 08:16:33 +02:00
Aaron Andersen
2873030a27
Merge pull request #320341 from sanzoghenzo/add-kodi-raiplay
kodi-raiplay: init at 4.1.2
2024-06-16 20:43:44 -04:00
Pol Dellaiera
93e6ec3e5c
Merge pull request #319202 from r-ryantm/auto-update/obs-studio-plugins.obs-move-transition
obs-studio-plugins.obs-move-transition: 3.0.0 -> 3.0.1
2024-06-16 22:50:26 +02:00
aleksana
6f565453f4 media-downloader: move to pkgs/by-name 2024-06-17 03:38:59 +08:00
Andrea Ghensi
fc71c79354 kodi-raiplay: init at 4.1.2 2024-06-16 20:40:52 +02:00
Aaron Andersen
1a6f087c2a
Merge pull request #320158 from r-ryantm/auto-update/kodiPackages.infotagger
kodiPackages.infotagger: 0.0.7 -> 0.0.8
2024-06-16 06:55:59 -04:00
Aaron Andersen
a6b7adf448
Merge pull request #320013 from sanzoghenzo/add-simplecache
kodi-simplecache: init at 2.0.2
2024-06-16 06:52:47 -04:00
Aaron Andersen
39bb214d29
Merge pull request #320011 from sanzoghenzo/add-kodi-plugin-cache
kodi-plugin-cache: init at 3.0.0
2024-06-16 06:52:32 -04:00
Aaron Andersen
019bc3bcd7
Merge pull request #319239 from sanzoghenzo/add-kodi-upnext
kodi-upnext: init at 1.1.9+matrix1
2024-06-16 06:46:01 -04:00
R. Ryantm
3885342823 kodiPackages.infotagger: 0.0.7 -> 0.0.8 2024-06-15 23:52:38 +00:00
Andrea Ghensi
23b37540cc kodi-plugin-cache: init at 3.0.0 2024-06-15 10:04:21 +02:00
Andrea Ghensi
8a143faed6 kodi-simplecache: init at 2.0.2 2024-06-15 10:03:36 +02:00
Andrea Ghensi
2f55a21a7d kodi-formula1: init at 2.0.2 2024-06-15 09:51:34 +02:00
Andrea Ghensi
7e6aaafc58 kodi-upnext: init at 1.1.9+matrix1
This adds the Up Next kodi addon to kodi packages
2024-06-15 09:20:05 +02:00
github-actions[bot]
eccfb1ee94
Merge staging-next into staging 2024-06-15 00:02:47 +00:00
Andrew Marshall
5ff3569dc8 davinci-resolve: add icon to desktop item 2024-06-14 16:04:45 -04:00
Andrew Marshall
51e585c476 davinci-resolve: Fix incorrect mainProgram for studio 2024-06-14 15:46:51 -04:00
Andrew Marshall
d19f0f5b15 davinci-resolve: Copy desktop item to FHS env 2024-06-14 15:45:46 -04:00
Andrew Marshall
e3bb70e23b davinci-resolve: Fix incorrect fields in desktop item
- The exec was wrong—perhaps correct once-upon-a-time, but no more
- Differentiate for studio version
2024-06-14 15:45:17 -04:00
Martin Weinelt
abdf5dc772
treewide: remove pythonRelaxDepsHook references
It is is now provided automatically, when `pythonRelaxDeps` or
`pythonRemoveDeps` is defined through `mk-python-derivation`.
2024-06-14 14:52:00 +02:00
Xelden
82d8d5016f mpvScripts.thumbnail: 0.5.3 -> 0.5.4 2024-06-14 00:02:43 -05:00
Sandro
e63d54b4aa
Merge pull request #319273 from XYenon/fix/mpv-unwrapped
mpv-unwrapped: fix build on x86_64-darwin
2024-06-13 19:12:27 +02:00
Sandro
f09c9e8911
Merge pull request #319417 from r-ryantm/auto-update/open-in-mpv 2024-06-13 11:05:58 +02:00
XYenon
f1f5d46e64 mpv-unwrapped: format with nixfmt rfc style 2024-06-13 11:39:36 +08:00
XYenon
51d66a42c5 mpv-unwrapped: fix build on x86_64-darwin 2024-06-13 11:38:52 +08:00
R. Ryantm
d784ed9dfa open-in-mpv: 2.2.1 -> 2.2.2 2024-06-12 23:41:58 +00:00
h7x4
9d0b1700fb
Merge pull request #318155 from r-ryantm/auto-update/jellyfin-mpv-shim
jellyfin-mpv-shim: 2.7.0.post2 -> 2.8.0
2024-06-12 21:51:26 +02:00
R. Ryantm
e96c52b26d obs-studio-plugins.obs-move-transition: 3.0.0 -> 3.0.1 2024-06-12 02:08:33 +00:00
Peder Bergebakken Sundt
8e1e4c6403 webtorrent_desktop: make fetchpatch url reproducible 2024-06-12 01:05:15 +02:00
Peder Bergebakken Sundt
463c72bb6e mpvScripts.mpv-notify-send: make fetchpatch url reproducible 2024-06-12 01:01:37 +02:00
Weijia Wang
31e07ddb2d
Merge pull request #317549 from r-ryantm/auto-update/flowblade
flowblade: 2.16 -> 2.16.2
2024-06-12 00:38:18 +02:00
Christian Kögler
ab1af679e4
Merge pull request #318780 from r-ryantm/auto-update/vdrPlugins.softhddevice
vdrPlugins.softhddevice: 2.3.2 -> 2.3.3
2024-06-10 21:23:05 +02:00
Jan van Esdonk
cd180e8ae9 jellyfin-media-player: 1.10.1 -> 1.11.1 2024-06-10 18:53:19 +02:00
Peder Bergebakken Sundt
60b629cc82
Merge pull request #316771 from r-ryantm/auto-update/subtitleedit
subtitleedit: 4.0.5 -> 4.0.6
2024-06-10 14:52:13 +02:00
R. Ryantm
4e729ca6ab vdrPlugins.softhddevice: 2.3.2 -> 2.3.3 2024-06-10 12:05:32 +00:00
Bobby Rong
31401c5655
Merge pull request #318050 from bobby285271/upd/hypnotix
hypnotix: 4.3 -> 4.4
2024-06-10 16:35:10 +08:00
Mario Rodas
cfbeda848e
Merge pull request #318588 from 1sixth/fix-mpv-test
nixos/tests/mpv: adapt to the new mpv wrapper
2024-06-09 21:49:59 -05:00
1sixth
54072d588d
mpv: allow ofborg to execute the test
Co-authored-by: Mario Rodas <marsam@users.noreply.github.com>
2024-06-10 09:37:33 +08:00
Alexis Hildebrandt
f8c4a98e8e treewide: Remove the definite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"([Tt]he)? ' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Tt]he (.)/\1\U\2/'
2024-06-09 23:08:46 +02: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
Alexandre Rosenfeld
c0249a278c
multiviewer-for-f1: 1.31.3 -> 1.32.1 2024-06-08 23:22:48 -04:00
R. Ryantm
d67dcabe40 haruna: 1.1.1 -> 1.1.2 2024-06-08 12:34:30 -07:00
Mario Rodas
c95c1a563d
Merge pull request #304349 from atorres1985-contrib/mpv
mpv: 0.37.0 -> 0.38.0
2024-06-08 14:10:08 -05:00
Anderson Torres
6ee4b2de1a mpv: fix build on Darwin (patch by marsam) 2024-06-08 13:33:40 -03:00
Erik Scholz
bf1649e7f7
mpvScripts.manga-reader: fix homepage link 2024-06-08 14:46:35 +02:00
Anderson Torres
c14b678b5a mpv: nixfmt 2024-06-08 01:24:01 -03:00
Anderson Torres
0a3717ab41 mpv: break it on Darwin 2024-06-08 01:24:00 -03:00
Anderson Torres
411126e125 mpvScripts: move it under mpv 2024-06-08 01:24:00 -03:00
Anderson Torres
cc419c0148 mpv: move wrapper under mpv-unwrapped.passthru
And refactor to fit.

wrapper
2024-06-08 01:24:00 -03:00
Anderson Torres
bb5d71826c mpv: 0.37.0 -> 0.38.0 2024-06-08 01:24:00 -03:00
R. Ryantm
da11bdb8ba jellyfin-mpv-shim: 2.7.0.post2 -> 2.8.0 2024-06-08 02:27:38 +00:00
Peder Bergebakken Sundt
e7e949800c
Merge pull request #315118 from id3v1669/gpu-screen-recorder
gpu-screen-recorder: unstable-2023-11-18 -> unstable-2024-05-21
2024-06-08 01:37:18 +02:00
R. Ryantm
872ec39063 mpvScripts.mpvacious: 0.34 -> 0.35 2024-06-07 16:53:13 +00:00
Atemu
0c11f909d7
Merge pull request #316998 from jopejoe1/ffmpeg/update/7.0.1
ffmpeg_7: 7.0 -> 7.0.1
2024-06-07 18:52:56 +02:00
Bobby Rong
6973b9a342
hypnotix: 4.3 -> 4.4
https://github.com/linuxmint/hypnotix/compare/4.3...4.4
2024-06-07 21:26:41 +08:00
Yueh-Shun Li
56e05f27a3 losslesscut-bin: *-windows: refactor
Run pre- and post- hooks.

Utilize $sourceRoot.

cd when CWD is about to move away.
2024-06-07 13:09:34 +08:00
Yueh-Shun Li
c47da5739f losslesscut-bin: *-dmg: refactor
Run pre- and post- hooks.

Utilize $sourceRoot.
2024-06-07 13:09:07 +08:00
Yueh-Shun Li
809e6a82a4 losslesscut-bin: *-dmg: unpack with _7zz instead of undmg
Support both HFS and Zstd format with 7zz.
2024-06-07 12:23:18 +08:00
R. Ryantm
3bc7854ee8 shotcut: 24.04.28 -> 24.06.02 2024-06-07 01:41:04 +00:00
Atemu
0093d837d9 handbrake: use ffmpeg's new override interface
ffmpeg no longer responds to changing version using overrideAttrs. This causes
an issue where a critical patch that is included when ABI == 7.0 would not be
applied because the ffmpeg drv still thinks it's building for ABI 7.0.1.

You must specify the ABI version via the explicit override API now which this
patch does.

The ffmpeg derivation now supports fetching an upstream source for a certain
version; there is no need to do so manually anymore.
2024-06-06 19:57:10 +02:00
Yueh-Shun Li
3ef17e2e9f losslesscut-bin: 3.58.0 -> 3.61.1 2024-06-07 01:06:28 +08:00
Peder Bergebakken Sundt
71a19dc219
Merge pull request #276845 from Weathercold/adl-3.2.8
adl: 3.0.1 -> 3.2.8
2024-06-05 22:14:20 +02:00
R. Ryantm
081f7546d1 flowblade: 2.16 -> 2.16.2 2024-06-05 20:11:30 +00:00
Peder Bergebakken Sundt
6165b0f8ac animdl: unbreak 2024-06-05 14:48:09 +02:00
Weijia Wang
9640f2f465
Merge pull request #315620 from r-ryantm/auto-update/flowblade
flowblade: 2.14.0.2 -> 2.16
2024-06-04 22:03:02 +02:00
Weijia Wang
76bcd69dad
Merge pull request #316840 from dschrempf/kodiPackages.youtube-fix-deps
kodiPackages.youtube: fix dependencies
2024-06-04 21:44:49 +02:00
Weijia Wang
60979cfbdd
Merge pull request #316369 from r-ryantm/auto-update/kodiPackages.youtube
kodiPackages.youtube: 7.0.6.3 -> 7.0.7
2024-06-04 21:43:41 +02:00
R. Ryantm
57433b2d0b vdrPlugins.softhddevice: 2.3.1 -> 2.3.2 2024-06-04 17:17:50 +00:00
Dominik Schrempf
08869be075
kodiPackages.youtube: fix dependencies
As per the
changelod (https://github.com/anxdpanic/plugin.video.youtube/blob/master/changelog.txt),
the dependencies on `six` and `infotagger` have been removed a while ago.

Also, a new dependency was added: `inputstream-adaptive`.

Fixes: Annoying popup about enabling `inputstream-adaptive` whenever a video is played.

Tested on linux-x86-64.
2024-06-03 10:47:55 +02:00
R. Ryantm
23fc7e91b4 subtitleedit: 4.0.5 -> 4.0.6 2024-06-03 00:10:52 +00:00
Weijia Wang
c66e90ba5d
Merge pull request #314783 from r-ryantm/auto-update/jellyfin-mpv-shim
jellyfin-mpv-shim: 2.6.0 -> 2.7.0.post2
2024-06-02 19:36:49 +02:00
Weijia Wang
14ac99d34a
Merge pull request #314747 from r-ryantm/auto-update/obs-studio-plugins.obs-move-transition
obs-studio-plugins.obs-move-transition: 2.12.0 -> 3.0.0
2024-06-02 18:58:53 +02:00
R. Ryantm
b5860de3f5 obs-studio-plugins.obs-text-pthread: 2.0.3 -> 2.0.4 2024-06-02 13:23:46 +00:00
R. Ryantm
7624457635 kodiPackages.youtube: 7.0.6.3 -> 7.0.7 2024-06-01 09:16:09 +00:00
Peder Bergebakken Sundt
1014ea3e58
Merge pull request #314598 from Scrumplex/pkgs/simplescreenrecorder/0.4.4
simplescreenrecorder: 0.4.3 -> 0.4.4
2024-05-31 22:48:48 +02:00
Sandro
3681145005
Merge pull request #314397 from qubitnano/pr/handbrake
handbrake: 1.7.3 -> 1.8.0
2024-05-30 11:01:56 +02:00
Kovacsics Robert
6684eb5f09
mpvScripts.autosubsync: init at unstable-2022-12-16 (#226938) 2024-05-29 16:25:34 +00:00
R. Ryantm
dcbb4588c2 flowblade: 2.14.0.2 -> 2.16 2024-05-29 12:58:34 +00:00
Weijia Wang
5102ca4351
Merge pull request #315206 from anthr76/anthr76/lightworks-update
lightworks: 2023.1 -> 2023.2
2024-05-29 08:40:52 +02:00
Nick Cao
a2e630a199
Merge pull request #315161 from r-ryantm/auto-update/mpvScripts.videoclip
mpvScripts.videoclip: 0-unstable-2024-03-08 -> 0-unstable-2024-05-26
2024-05-28 13:59:12 -04:00
id3v1669
aac4b24c02 gpu-screen-recorder: unstable-2023-11-18 -> unstable-2024-05-21 2024-05-29 00:23:20 +08:00
Sandro
258c9bd91b
Merge pull request #314924 from MatthewCroughan/mc/ustreamer-v4p 2024-05-28 10:45:01 +02:00
Sandro
e803d375d3
Merge pull request #314923 from MatthewCroughan/mc/ustreamer-versionbump
ustreamer: 6.4 -> 6.12
2024-05-28 10:34:58 +02:00
Aaron Andersen
07c22ccf81
Merge pull request #315215 from aanderse/kodi.packages.invidious
kodi.packages.invidious: add missing infotagger dependency
2024-05-28 03:50:11 +00:00
Aaron Andersen
ee947a38e2 kodi.packages.invidious: add missing infotagger dependency 2024-05-27 20:21:08 -04:00
Peder Bergebakken Sundt
bad0d19149
Merge pull request #311466 from atorres1985-contrib/smplayer
smplayer: 23.12.0 -> 24.5.0
2024-05-28 01:37:06 +02:00
Anthony Rabbito
5be55ffd3d
lightworks: 2023.1 -> 2023.2
Signed-off-by: Anthony Rabbito <hello@anthonyrabbito.com>
2024-05-27 19:21:24 -04:00
Aaron Andersen
310e04b7e2
Merge pull request #314842 from aanderse/kodi.packages.controller-topology-project
kodi.packages.controller-topology-project: unstable-2022-11-19 -> 1.0.0
2024-05-27 23:14:42 +00:00
R. Ryantm
b4b415c34b mpvScripts.videoclip: 0-unstable-2024-03-08 -> 0-unstable-2024-05-26 2024-05-27 18:36:21 +00:00
matthewcroughan
7a7770c46c ustreamer: 6.4 -> 6.12 2024-05-26 20:26:03 +01:00
matthewcroughan
50f266fc9c ustreamer: enable v4p (video passthrough) 2024-05-26 20:25:28 +01:00
Nick Cao
6285d6aa78
Merge pull request #314648 from r-ryantm/auto-update/mpvScripts.mpvacious
mpvScripts.mpvacious: 0.33 -> 0.34
2024-05-26 09:58:39 -04:00
Aaron Andersen
b4cc51513b kodi.packages.controller-topology-project: unstable-2022-11-19 -> 1.0.0 2024-05-26 08:35:38 -04:00
Aaron Andersen
6d0a40666f
Merge pull request #314014 from r-ryantm/auto-update/kodiPackages.orftvthek
kodiPackages.orftvthek: 0.12.9 -> 0.12.12
2024-05-26 12:28:30 +00:00
Sandro
4746f1d15c
Merge pull request #314786 from luftmensch-luftmensch/mpvScripts.modernx-zydezu_0.3.5.5
mpvScripts.modernx-zydezu: 0.3.5 -> 0.3.5.5
2024-05-26 12:07:54 +02:00
Matthias Beyer
a201cda22c
Merge pull request #314468 from r-ryantm/auto-update/media-downloader
media-downloader: 4.6.0 -> 4.7.0
2024-05-26 11:12:15 +02:00
luftmensch-luftmensch
ee8e2cb756
mpvScripts.modernx-zydezu: 0.3.5 -> 0.3.5.5 2024-05-26 09:49:59 +02:00
R. Ryantm
e4380f5b86 jellyfin-mpv-shim: 2.6.0 -> 2.7.0.post2 2024-05-26 07:34:13 +00:00
R. Ryantm
48f502c155 obs-studio-plugins.obs-move-transition: 2.12.0 -> 3.0.0 2024-05-26 03:45:50 +00:00
R. Ryantm
9097a7f42f mpvScripts.mpvacious: 0.33 -> 0.34 2024-05-25 17:01:32 +00:00
Sefa Eyeoglu
65c5904b20
simplescreenrecorder: 0.4.3 -> 0.4.4
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-05-25 15:50:09 +02:00
Sefa Eyeoglu
34e11fff18
simplescreenrecorder: add update script
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-05-25 15:44:14 +02:00
luftmensch-luftmensch
d444681ba5
mpvScripts.modernx-zydezu: 0.3.4 -> 0.3.5 2024-05-25 10:25:33 +02:00
Scharada
69cbb6b7b6
makemkv: 1.17.6 -> 1.17.7 (#313932)
Co-authored-by: Scharada <scharada@marmels.de>
2024-05-25 15:20:01 +08:00
R. Ryantm
33d5759094 media-downloader: 4.6.0 -> 4.7.0 2024-05-25 03:21:49 +00:00
qubitnano
2e31e2ee4b handbrake: 1.7.3 -> 1.8.0 2024-05-24 17:38:00 -04:00
R. Ryantm
451cdf28f0 kodiPackages.orftvthek: 0.12.9 -> 0.12.12 2024-05-23 14:43:12 +00:00
Anderson Torres
cb7760c205 smplayer: migrate to by-name 2024-05-22 11:51:15 -03:00
Pol Dellaiera
b997204477
Merge pull request #313377 from r-ryantm/auto-update/obs-studio-plugins.advanced-scene-switcher
obs-studio-plugins.advanced-scene-switcher: 1.26.1 -> 1.26.2
2024-05-21 19:03:07 +02:00
R. Ryantm
be774f013b obs-studio-plugins.advanced-scene-switcher: 1.26.1 -> 1.26.2 2024-05-21 11:50:30 +00:00
Sigmanificient
0058552891 pkgs/applications: remove uneeded fetchpatch arguments 2024-05-21 03:12:20 +02:00
R. Ryantm
d6d81b3386 jellyfin-media-player: 1.10.0 -> 1.10.1 2024-05-20 17:10:54 +00:00
Matthias Beyer
a89071b9c2
Merge pull request #312659 from r-ryantm/auto-update/haruna
haruna: 1.1.0 -> 1.1.1
2024-05-19 10:56:12 +02:00
Aaron Andersen
27d5548abb
Merge pull request #312673 from r-ryantm/auto-update/kodiPackages.jellyfin
kodiPackages.jellyfin: 1.0.2 -> 1.0.3
2024-05-18 22:47:22 +00:00
Nick Cao
74bce22f4f
Merge pull request #312587 from r-ryantm/auto-update/mpvScripts.mpv-webm
mpvScripts.mpv-webm: 0-unstable-2024-04-22 -> 0-unstable-2024-05-13
2024-05-18 15:36:35 -04:00
R. Ryantm
0502412807 vdrPlugins.softhddevice: 2.3.0 -> 2.3.1 2024-05-18 15:48:37 +00:00
R. Ryantm
7bfd7a33ca kodiPackages.jellyfin: 1.0.2 -> 1.0.3 2024-05-18 13:59:16 +00:00
R. Ryantm
4d4c167703 haruna: 1.1.0 -> 1.1.1 2024-05-18 13:04:08 +00:00
R. Ryantm
6baeab792e mpvScripts.mpv-webm: 0-unstable-2024-04-22 -> 0-unstable-2024-05-13 2024-05-18 03:39:40 +00:00
K900
d6f3061c94
Merge pull request #312153 from K900/jellyfin-media-player-1.10
jellyfin-media-player: 1.9.1 -> 1.10.0, clean up a bit
2024-05-17 08:00:28 +03:00
R. Ryantm
3c54033355 obs-studio-plugins.advanced-scene-switcher: 1.26.0 -> 1.26.1 2024-05-16 08:40:05 +00:00
K900
82bdb4745b jellyfin-media-player: 1.9.1 -> 1.10.0, clean up a bit 2024-05-16 11:18:43 +03:00
Fabian Affolter
9376ef9de7
go2tv: refactor
- add changelog to meta
2024-05-15 13:20:14 +02:00
R. Ryantm
fe3e468d09 go2tv: 1.16.0 -> 1.16.1 2024-05-15 11:05:55 +00:00
Marcus Ramberg
922a16eed5
Merge pull request #311177 from r-ryantm/auto-update/streamlink
streamlink: 6.7.3 -> 6.7.4
2024-05-14 20:13:50 +02:00
Atemu
b4047a0455
Merge pull request #279260 from SuperSamus/multiPkgs-false-remove
treewide: remove `multiArch=false` and wrong usage of `extraPkgs`
2024-05-14 09:59:43 +02:00
Martino Fontana
6e465f4550 treewide: fix use of extraPkgs in AppImages
Mostly removes unnecessary use of `extraPkgs = pkgs: appimageTools.defaultFhsEnvArgs.multiPkgs pkgs;`
This caused some packages to be listed twice.

Also, fix some styling, and accidental use of top-level packages (sometimes due to the `with;` keyword, e.g. on `beeper`).
Remove inclusions of `bash`, since `bashInteractive` is already present by default.
2024-05-13 20:35:07 +02:00
Aaron Andersen
92481d84f5
Merge pull request #311139 from r-ryantm/auto-update/kodiPackages.visualization-projectm
kodiPackages.visualization-projectm: 20.2.0 -> 21.0.1
2024-05-13 14:10:21 +00:00
nicoo
969eb3b16a
mkvtoolnix: patch to build on Darwin & FreeBSD (#311133)
Patch was applied upstream, but no new release was cut yet.
Addresses https://hydra.nixos.org/build/258096907
2024-05-13 10:05:17 +00:00
Franz Pletz
fe6b10e20b
Merge pull request #310719 from r-ryantm/auto-update/obs-studio-plugins.advanced-scene-switcher
obs-studio-plugins.advanced-scene-switcher: 1.25.5 -> 1.26.0
2024-05-13 11:38:51 +02:00