Commit Graph

23479 Commits

Author SHA1 Message Date
tomberek
5975db7a06
Merge pull request #331651 from r-ryantm/auto-update/steampipePackages.steampipe-plugin-aws
steampipePackages.steampipe-plugin-aws: 0.138.0 -> 0.144.0
2024-08-04 14:47:22 -04:00
amesgen
0f05f31b4d
gh-markdown-preview: move to by-name 2024-08-04 13:37:11 +02:00
amesgen
5781e6b004
gh-dash: move to by-name 2024-08-04 13:37:11 +02:00
amesgen
9ca3776827
gh-actions-cache: move to by-name 2024-08-04 13:37:10 +02:00
Aleksana
e4ca401b20
Merge pull request #332163 from r-ryantm/auto-update/gh-dash
gh-dash: 4.4.0 -> 4.5.0
2024-08-04 19:31:50 +08:00
lassulus
29f71bdf1b
Merge pull request #332155 from r-ryantm/auto-update/ttyplot
ttyplot: 1.6.5 -> 1.7.0
2024-08-04 10:52:33 +02:00
Franz Pletz
63d92a39a2
Merge pull request #332011 from DariusChit/tmux-shutdown-patch 2024-08-04 10:34:48 +02:00
R. Ryantm
88cbf825b2 mongodb-tools: 100.9.4 -> 100.10.0 2024-08-04 06:38:54 +00:00
R. Ryantm
84eed40b9c gh-dash: 4.4.0 -> 4.5.0 2024-08-04 03:55:42 +00:00
R. Ryantm
729e7d5af2 ttyplot: 1.6.5 -> 1.7.0 2024-08-04 03:22:40 +00:00
R. Ryantm
8964f5a8f1 panoply: 5.4.3 -> 5.5.0 2024-08-04 02:09:10 +00:00
Julius Michaelis
2fd334dc73 trashy: move installShellCompletion to postInstall for consistency 2024-08-04 10:50:48 +09:00
Julius Michaelis
6a9beaf893 treewide: skip generating shell completions using $out/bin/… when cross compiling
This focuses on Rust packages, since the most commonly used argument
parser library (clap/structopt) makes the following pattern natural and
thus common:

  postInstall = ''
    installShellCompletion --cmd foo \
      --bash <($out/bin/foo completion bash) \
      …

This commit just guards those with

lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform)

splitting the string where unrelated actions are performed.
2024-08-04 10:50:48 +09:00
Julius Michaelis
59b930d820 charasay: fix generating shell completions 2024-08-04 10:42:37 +09:00
R. Ryantm
90928184b6 wasm-tools: 1.214.0 -> 1.215.0 2024-08-04 00:14:09 +00:00
DariusChit
5a628e6349 tmux: add patch for hanging on shutdown 2024-08-03 22:37:23 +01:00
Will Fancher
b79c216dcf calamares: 3.3.3 -> 3.3.8 2024-08-03 13:11:09 -04:00
Anselm Schüler
e1354a3538
maintainers: partially remove anselmschueler 2024-08-03 19:09:47 +02:00
Nick Cao
e7ccc351aa
Merge pull request #331895 from r-ryantm/auto-update/pfetch-rs
pfetch-rs: 2.10.0 -> 2.11.0
2024-08-03 10:04:11 -04:00
github-actions[bot]
41e708f4b7
Merge staging-next into staging 2024-08-03 12:01:32 +00:00
Matthias Beyer
3cf8230b31
Merge pull request #331846 from r-ryantm/auto-update/timetagger_cli
timetagger_cli: 23.8.3 -> 24.7.1
2024-08-03 10:17:06 +02:00
github-actions[bot]
746071163c
Merge staging-next into staging 2024-08-03 06:01:24 +00:00
R. Ryantm
90d02f0086 cloc: 2.00 -> 2.02 2024-08-03 07:49:07 +02:00
R. Ryantm
f4dbe80c4d pfetch-rs: 2.10.0 -> 2.11.0 2024-08-03 02:40:36 +00:00
Nick Cao
81d6cb6d11
Merge pull request #331853 from GaetanLepage/nbqa
nbqa: fix by adding distutils dependency
2024-08-02 21:13:57 -04: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
github-actions[bot]
81cddc1677
Merge staging-next into staging 2024-08-03 00:02:50 +00:00
Gaetan Lepage
e58878b8a1 nbqa: fix by adding distutils test dependency 2024-08-02 23:31:13 +02:00
R. Ryantm
0c69b24df0 timetagger_cli: 23.8.3 -> 24.7.1 2024-08-02 20:18:36 +00:00
Nick Cao
754ab77cae
Merge pull request #331665 from r-ryantm/auto-update/gotify-cli
gotify-cli: 2.2.4 -> 2.3.2
2024-08-02 15:14:15 -04:00
Martin Weinelt
eb442d9081
Merge pull request #331394 from mweinelt/esphome-2024.7.3
esphome: 2024.7.2 -> 2024.7.3
2024-08-02 20:50:16 +02:00
github-actions[bot]
931cf50e01
Merge staging-next into staging 2024-08-02 18:01:49 +00:00
Emily
8764d898c4
Merge pull request #330741 from emilazy/push-rlvumrtyxrmk
python3Packages.nose3: drop
2024-08-02 16:31:00 +01:00
Aleksana
9295d8ef80
Merge pull request #330192 from philiptaron/kakoune-maintainer
kakoune: add philiptaron as maintainer to most kakoune-related things
2024-08-02 22:53:17 +08:00
R. Ryantm
8a4db5b604 aichat: 0.19.0 -> 0.20.0 2024-08-02 12:42:41 +00:00
seth
ccb7d30b59
turbo: migrate to by-name 2024-08-02 04:04:20 -04:00
seth
f9ff8c2304
turbo: pin darwin.apple_sdk in expression 2024-08-02 04:04:15 -04:00
github-actions[bot]
fe3585d6db
Merge staging-next into staging 2024-08-02 06:01:37 +00:00
tomberek
f325432c8c
Merge pull request #326516 from r-ryantm/auto-update/wootility
wootility: 4.6.20 -> 4.6.21
2024-08-02 01:42:32 -04:00
R. Ryantm
bbb9f070f6 gotify-cli: 2.2.4 -> 2.3.2 2024-08-02 03:44:24 +00:00
R. Ryantm
2d44e42d98 steampipePackages.steampipe-plugin-github: 0.41.0 -> 0.42.0 2024-08-02 02:01:33 +00:00
R. Ryantm
fae007be06 steampipePackages.steampipe-plugin-aws: 0.138.0 -> 0.144.0 2024-08-02 01:41:10 +00:00
Philip Taron
2f3e77e1f2
kakoune: add philiptaron as maintainer to most kakoune-related things 2024-08-01 18:06:40 -07:00
github-actions[bot]
203fa1d4a2
Merge staging-next into staging 2024-08-02 00:02:35 +00:00
R. Ryantm
0ec7f9ab29 rustypaste-cli: 0.9.0 -> 0.9.1 2024-08-01 21:16:30 +00:00
Sandro
5263b5bcb1
Merge pull request #299274 from anthonyroussel/steampipe-plugin-aws
steampipePackages.steampipe-plugins-aws: init at 0.132.0
2024-08-01 22:23:56 +02:00
github-actions[bot]
b0709876cb
Merge staging-next into staging 2024-08-01 12:01:44 +00:00
Bjørn Forsman
b94f1f7a5e Revert "diffoscope: disable another broken test"
This reverts commit 9eae9c2035.

No longer needed since commit adbceb5fab
("diffoscope: 271 -> 273").

Manually resolved conflict due to commit
5cf0c470cb ("diffoscope: apply nixfmt").
2024-08-01 11:12:50 +02:00
K900
a4a42b3aec Merge remote-tracking branch 'origin/staging-next' into staging 2024-08-01 08:57:50 +03:00
Emily
0fa536d5b2
svtplay-dl: migrate to pytest 2024-08-01 11:25:22 +09:00
Emily
4094f03ffd
svtplay-dl: use buildPythonApplication 2024-08-01 11:25:22 +09:00
Martin Weinelt
7df877abd7
esphome: 2024.7.2 -> 2024.7.3
https://github.com/esphome/esphome/releases/tag/2024.7.3
2024-08-01 01:48:22 +02:00
Emily Trau
553b959505
Merge pull request #330851 from r-ryantm/auto-update/svtplay-dl
svtplay-dl: 4.89 -> 4.97.1
2024-08-01 09:26:00 +10:00
John Titor
7a8913b2d1 jdupes: point to new homepage link, cleanup
apply nixfmt-rfc-style
rec -> finalAttrs
2024-07-31 22:18:30 +05:30
R. Ryantm
84c30688a9 jdupes: 1.27.3 -> 1.28.0 2024-07-31 22:18:30 +05:30
Arnout Engelen
29d4566505
Merge pull request #324888 from trofi/diffoscope-update
diffoscope: 271 -> 273
2024-07-31 14:27:02 +02:00
Bannerets
077e145d2d
zf: 0.9.1 -> 0.9.2 (#330890)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2024-07-31 14:10:54 +02:00
Sandro
91299a7cdb
Merge pull request #328863 from katexochen/upower/up 2024-07-31 14:01:42 +02:00
lassulus
301c3bf478
Merge pull request #331210 from r-ryantm/auto-update/gh-markdown-preview
gh-markdown-preview: 1.5.0 -> 1.6.0
2024-07-31 13:34:27 +02:00
Sergei Trofimovich
5cf0c470cb diffoscope: apply nixfmt 2024-07-31 09:08:15 +01:00
Sergei Trofimovich
adbceb5fab diffoscope: 271 -> 273
Changes:
- https://diffoscope.org/news/diffoscope-272-released/
- https://diffoscope.org/news/diffoscope-273-released/
2024-07-31 09:07:57 +01:00
zimbatm
1efdf8162a tmux-cssh: move to by-name 2024-07-31 09:10:33 +02:00
zimbatm
43ab2b48b3 ovh-ttyrec: move to by-name 2024-07-31 09:10:32 +02:00
zimbatm
3d2cee1c04 direnv: move to by-name 2024-07-31 09:10:32 +02:00
R. Ryantm
f51e3fb4db gh-markdown-preview: 1.5.0 -> 1.6.0 2024-07-31 06:52:24 +00:00
❄️
09faf66aea
Merge pull request #331120 from khaneliman/snapper
snapper: fix build
2024-07-30 20:29:32 -03:00
Peder Bergebakken Sundt
a5779e925d
Merge pull request #328550 from pbsds/init-pytest-coverage-shim-1721428630
python3Packages.pytest-cov-stub: init at 1.0.0
2024-07-30 19:04:29 +02:00
Austin Horstman
3d45adb1fb
snapper: fix build
zlib missing dependency
2024-07-30 11:40:15 -05:00
Sigmanificient
aab1113d4a treewide: normalize maintainers list formatting
grep -rP 'maintainers = \[\];'
2024-07-30 16:26:22 +02:00
R. Ryantm
6c9d467e03 rrdtool: 1.8.0 -> 1.9.0 2024-07-29 22:35:06 +00:00
Jonathan Davies
a8f203cf8e
vector: 0.39.0 → 0.40.0 2024-07-29 21:50:53 +01:00
Florian Klink
179867eb14
Merge pull request #330886 from jmbaur/bootgen-2024.1
xilinx-bootgen: update, format, move to by-name
2024-07-29 21:44:13 +03:00
Fabián Heredia Montiel
fb89aa5757
Merge pull request #330562 from pineapplehunter/immich-2.2.12
immich-cli: 2.2.4 -> 2.2.12
2024-07-29 11:10:41 -06:00
Jared Baur
303bc9a08e
xilinx-bootgen: move to pkgs/by-name 2024-07-29 08:53:06 -07:00
Jared Baur
49bc45b59c
xilinx-bootgen: add jmbaur as maintainer 2024-07-29 08:51:11 -07:00
Jared Baur
6ee5796295
xilinx-bootgen: reformat 2024-07-29 08:50:27 -07:00
Jared Baur
a36e69c83d
xilinx-bootgen: xilinx_v2023.2 -> xilinx_v2024.1 2024-07-29 08:49:38 -07:00
R. Ryantm
161d0f0d0a svtplay-dl: 4.89 -> 4.97.1 2024-07-29 12:41:26 +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
Fabian Affolter
52ec9ac3b1
Merge pull request #329874 from cyberus-technology/cyclonedx-python-4.5.0
cyclonedx-python: 3.11.7 -> 4.5.0
2024-07-28 18:52:11 +02:00
Jörg Thalheim
8968b1abb7
Merge pull request #330232 from atorres1985-contrib/remove-viric
Treewide: remove inactive maintainer viric
2024-07-28 17:15:00 +02:00
Nick Cao
5f0e309248
Merge pull request #330593 from r-ryantm/auto-update/scdl
scdl: 2.11.2 -> 2.11.3
2024-07-28 10:50:31 -04:00
Nick Cao
0caf928d21
Merge pull request #330594 from gador/sqlite3-to-mysql-2.3.0
sqlite3-to-mysql: 2.2.1 -> 2.3.0
2024-07-28 10:49:50 -04:00
Anderson Torres
9a624d10e3 treewide: remove viric from meta.maintainers [orphans]
Since theey is not active from at least six years.

All the packages on this commit became orphans.

---------------------------------------------------------------------------
There are files not covered by this commit, because they will be adopted
soon. Namely:

- pkgs/by-name/zs/zsync/package.nix
- pkgs/games/bsdgames/default.nix
- pkgs/misc/ghostscript/default.nix
- pkgs/os-specific/linux/kernel/perf/default.nix
- pkgs/tools/system/logrotate/default.nix
2024-07-28 11:48:51 -03:00
Vladimír Čunát
a5b2fe7374
Merge #328673: staging-next 2024-07-20 2024-07-28 13:45:55 +02:00
Matthias Beyer
027bc0e0c7
Merge pull request #329889 from r-ryantm/auto-update/ncdu
ncdu: 2.4 -> 2.5
2024-07-28 09:51:23 +02:00
R. Ryantm
a2ee8306f6 scdl: 2.11.2 -> 2.11.3 2024-07-28 07:37:21 +00:00
Florian Brandes
8a30a2b643
sqlite3-to-mysql: 2.2.1 -> 2.3.0
Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2024-07-28 08:42:58 +02:00
github-actions[bot]
384d08d20d
Merge master into staging-next 2024-07-28 06:01:00 +00:00
Shogo Takata
3b6dcb3aab
immich-cli: 2.2.4 -> 2.2.12 2024-07-28 12:12:26 +09:00
Atemu
cc973ae8bb
Merge pull request #330363 from peterhoeg/mainprogram
add mainProgram to a number of packages
2024-07-28 02:57:53 +02:00
K900
24076029d2 Merge remote-tracking branch 'origin/master' into staging-next 2024-07-28 01:04:35 +03:00
❄️
98ab87a16a
Merge pull request #314620 from NickCao/cmdpack
cmdpack: refactor build/installPhase, fix cross compilation
2024-07-27 18:09:48 -03:00
Pol Dellaiera
4db06d2d1b
Merge pull request #330369 from r-ryantm/auto-update/staruml
staruml: 6.2.1 -> 6.2.2
2024-07-27 22:52:15 +02:00
Pol Dellaiera
67fe42cd0f
Merge pull request #330426 from redyf/update-starship
starship: 1.20.0 -> 1.20.1
2024-07-27 22:48:35 +02:00
7c6f434c
dfbfa17eb1
Merge pull request #330300 from afh/update-modernize-remind
remind: 05.00.01 -> 05.00.02
2024-07-27 19:21:20 +00:00
Peder Bergebakken Sundt
3e02ed0e94
Merge pull request #329341 from gador/sqlite3-to-mysql-2.2.1
sqlite3-to-mysql: 2.2.0 -> 2.2.1
2024-07-27 18:19:41 +02:00
Nick Cao
890e1f4639
Merge pull request #329868 from r-ryantm/auto-update/moar
moar: 1.24.6 -> 1.25.1
2024-07-27 10:28:30 -04:00
Nick Cao
44fbad861d
Merge pull request #329682 from r-ryantm/auto-update/pgmetrics
pgmetrics: 1.16.0 -> 1.17.0
2024-07-27 10:19:58 -04:00
redyf
e6734185bc starship: 1.20.0 -> 1.20.1 2024-07-27 11:14:01 -03:00
R. Ryantm
33b2d9a3a8 staruml: 6.2.1 -> 6.2.2 2024-07-27 09:52:16 +00:00
Alexander Sieg
d37488d449
cyclonedx-python: 3.11.7 -> 4.5.0 2024-07-27 10:44:50 +02:00
Peter Hoeg
1ed2641d57 mandoc: add mainProgram 2024-07-27 10:31:29 +02:00
Peter Hoeg
edac99372b cowsay: add mainProgram 2024-07-27 10:31:20 +02:00
Vladimír Čunát
64c6a981fe
Merge branch 'master' into staging-next 2024-07-27 09:18:58 +02:00
Alexis Hildebrandt
12b1282cf0 remind: migrate to pkgs/by-name 2024-07-27 01:41:32 +02:00
Alexis Hildebrandt
66408991dd remind: 05.00.01 -> 05.00.02 2024-07-27 01:30:46 +02:00
Nick Cao
22de62d8c8
Merge pull request #330131 from r-ryantm/auto-update/chafa
chafa: 1.14.1 -> 1.14.2
2024-07-26 17:08:37 -04:00
Sandro
2f0c10a073
Merge pull request #329015 from eclairevoyant/yt-dlp-cffi 2024-07-26 20:54:42 +02:00
David Knaack
a6f1107c90 starship: 1.19.0 -> 1.20.0 2024-07-26 19:48:47 +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
éclairevoyant
0f0687f6b3
yt-dlp: move to by-name 2024-07-26 09:32:23 -04:00
R. Ryantm
a2e231bc7c chafa: 1.14.1 -> 1.14.2 2024-07-26 09:37:35 +00:00
K900
1410c766c8 Merge remote-tracking branch 'origin/master' into staging-next 2024-07-26 08:41:08 +03:00
RAVENz46
dbad97cfa1 szyszka: Add desktop icon
szyszka: resolve review

szyszka: Fix
2024-07-26 12:53:13 +09: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
6e609afd86 timer: 1.4.4 -> 1.4.5 2024-07-26 08:58:34 +10:00
Peder Bergebakken Sundt
da468028bc
Merge pull request #326577 from arikgrahl/move-to-by-name-hierarchy
grafterm, konf, octosql, promql: move to by-name hierarchy
2024-07-26 00:21:24 +02:00
Peder Bergebakken Sundt
ca6dfc798a
Merge pull request #327768 from KenMacD/aichat-shell-completions
aichat: add shell completion
2024-07-25 23:23:11 +02:00
Peder Bergebakken Sundt
a75ae8c786
Merge pull request #328504 from Coca162/scdl-2.11.1
scdl: 2.7.12 -> 2.11.2
2024-07-25 20:31:02 +02:00
github-actions[bot]
2567b049bd
Merge master into staging-next 2024-07-25 18:00:59 +00:00
Doron Behar
12cf457ec1
Merge pull request #329908 from r-ryantm/auto-update/pistol
pistol: 0.5 -> 0.5.1
2024-07-25 18:01:12 +03:00
Azat Bahawi
d07c5f0f59
Merge pull request #329737 from r-ryantm/auto-update/tbls
tbls: 1.76.1 -> 1.77.0
2024-07-25 14:16:53 +00:00
R. Ryantm
ef5cbcb4ea pistol: 0.5 -> 0.5.1 2024-07-25 13:39:59 +00:00
R. Ryantm
af6877a05e ncdu: 2.4 -> 2.5 2024-07-25 12:28:29 +00:00
github-actions[bot]
f20ed12f93
Merge master into staging-next 2024-07-25 12:01:18 +00:00
Martin Weinelt
1c05a5bff6
Merge pull request #329770 from mweinelt/esphome-2024.7.2
esphome: 2024.7.1 -> 2024.7.2
2024-07-25 12:29:47 +02:00
R. Ryantm
ccbfcd260f moar: 1.24.6 -> 1.25.1 2024-07-25 10:10:38 +00:00
Sandro
e1eb1da9d4
Merge pull request #329814 from iynaix/bump-yt-dlp
yt-dlp: 2024.7.16 -> 2024.7.25
2024-07-25 10:12:38 +02:00
github-actions[bot]
12ea252962
Merge master into staging-next 2024-07-25 06:01:22 +00:00
Michele Guerini Rocco
2646babf7f
Merge pull request #329605 from r-ryantm/auto-update/bdf2psf
bdf2psf: 1.229 -> 1.230
2024-07-25 07:49:34 +02:00
Lin Xianyi
06ed778c19 yt-dlp: 2024.7.16 -> 2024.7.25
Changelog: https://github.com/yt-dlp/yt-dlp/releases/tag/2024.7.25
2024-07-25 12:31:28 +08:00
Martin Weinelt
94bc3c61fa
esphome: 2024.7.1 -> 2024.7.2
https://github.com/esphome/esphome/releases/tag/2024.7.2
2024-07-25 02:58:34 +02:00
github-actions[bot]
94c17d2caa
Merge master into staging-next 2024-07-25 00:02:30 +00:00
Peder Bergebakken Sundt
5d28e33149
Merge pull request #320826 from nicknovitski/gcsp-nus
google-cloud-sql-proxy: add passthru.updateScript
2024-07-25 01:46:37 +02:00
R. Ryantm
3acda84443 tbls: 1.76.1 -> 1.77.0 2024-07-24 21:18:47 +00:00
github-actions[bot]
7208220b63
Merge master into staging-next 2024-07-24 18:01:18 +00:00
R. Ryantm
e71c3975ea pgmetrics: 1.16.0 -> 1.17.0 2024-07-24 15:16:55 +00:00
Peder Bergebakken Sundt
7f884ad21a
Merge pull request #328535 from anas-contribs/qdl
qdl: unstable-2023-04-11 -> unstable-2024-06-10
2024-07-24 15:55:20 +02:00
github-actions[bot]
8402add1f4
Merge master into staging-next 2024-07-24 12:01:12 +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
R. Ryantm
7995b33989 bdf2psf: 1.229 -> 1.230 2024-07-24 08:55:28 +00:00
7c6f434c
79ec608e0c
Merge pull request #327420 from ghpzin/scfbuild-fix-distutils
scfbuild: fix runtime error on Python 3.12
2024-07-24 08:22:13 +00:00
Vladimír Čunát
cd346565bb
Merge branch 'master' into staging-next 2024-07-24 07:19:19 +02:00
Aleksana
f416d5bf43
Merge pull request #328676 from reckenrode/wv-fixes
wv: fix build with clang 16 and on Darwin
2024-07-24 11:47:56 +08:00
Aleksana
68020f0b5a
Merge pull request #328678 from reckenrode/wv2-fixes
wv2: fix build with clang 16 and on Darwin
2024-07-24 11:46:45 +08:00
Aleksana
aea9ac7add
Merge pull request #329451 from eclairevoyant/pname-misuse-pt-1.2
treewide: fix uses of `finalAttrs.pname` in urls
2024-07-24 10:37:47 +08:00
Martin Weinelt
1c0028d9af
Merge pull request #329290 from mweinelt/esphome-2024.7.1
esphome: 2024.7.0 -> 2024.7.1
2024-07-23 23:30:10 +02:00
Franz Pletz
770a1cc072
Merge pull request #328596 from afh/update-migrate-pv 2024-07-23 23:18:29 +02:00
éclairevoyant
96031e8dd4
treewide: fix uses of finalAttrs.pname in urls 2024-07-23 12:48:10 -04:00
R. Ryantm
b535b380d5 phrase-cli: 2.31.0 -> 2.31.1 2024-07-23 16:18:20 +00:00
Florian Brandes
df43c66a75
sqlite3-to-mysql: refactor to new PEP build standard
Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2024-07-23 08:03:03 +02:00
Florian Brandes
12c06b0290
sqlite3-to-mysql: 2.2.0 -> 2.2.1
Signed-off-by: Florian Brandes <florian.brandes@posteo.de>
2024-07-23 07:58:38 +02:00
Martin Weinelt
07a71bbc9a
esphome: 2024.7.0 -> 2024.7.1
https://github.com/esphome/esphome/releases/tag/2024.7.1
2024-07-23 03:00:31 +02:00
github-actions[bot]
09a27d5bc1
Merge master into staging-next 2024-07-23 00:02:18 +00:00
Coca
6063739336
scdl: 2.7.12 -> 2.11.2
Signed-off-by: Coca <coca16622@gmail.com>
2024-07-23 00:37:35 +03:00
Nick Cao
216c2010d2
Merge pull request #329034 from r-ryantm/auto-update/svu
svu: 2.0.1 -> 2.1.0
2024-07-22 17:27:04 -04:00
Nick Cao
2f7d3adafc
Merge pull request #329078 from r-ryantm/auto-update/org-stats
org-stats: 1.12.1 -> 1.12.2
2024-07-22 16:52:00 -04:00
Artturin
60e9cffe2c Merge branch 'master' into staging-next 2024-07-22 22:53:31 +03:00
0x61nas
c6f75700a5
qdl: add maintainer anas 2024-07-22 19:22:10 +03:00
Matthieu Coudron
3c4865ea52
Merge pull request #327228 from eclairevoyant/flameshot-fix-wlr
flameshot: 12.1.0 -> 12.1.0-unstable-2024-07-02; allow enabling wlroots support
2024-07-22 17:28:56 +02:00
Doron Behar
90ad173902
Merge pull request #327444 from doronbehar/pkg/mpi4py
python312Packages.mpi4py: 3.1.6 -> 3.1.6-unstable-2024-07-08; rewrite
2024-07-22 16:55:16 +03:00
éclairevoyant
4650385d09
flameshot: move to by-name 2024-07-22 09:22:19 -04:00
Doron Behar
9eae9c2035 diffoscope: disable another broken test 2024-07-22 15:44:59 +03:00
0x61nas
b6ef99f16a
qdl: unstable-2023-04-11 -> unstable-2024-06-10 2024-07-22 10:51:32 +03:00
R. Ryantm
69ef31e438 org-stats: 1.12.1 -> 1.12.2 2024-07-22 06:13:25 +00:00
R. Ryantm
687418ff1a svu: 2.0.1 -> 2.1.0 2024-07-22 01:07:43 +00:00
Franz Pletz
fd670a90e6
Merge pull request #328934 from r-ryantm/auto-update/fluent-bit 2024-07-21 22:31:16 +02:00
Franz Pletz
436548a5b5
fluent-bit: move to by-name 2024-07-21 21:06:53 +02:00
Franz Pletz
361b07ae16
fluent-bit: reformat 2024-07-21 21:04:58 +02:00
R. Ryantm
059780b4f1 fluent-bit: 3.1.0 -> 3.1.3 2024-07-21 15:25:25 +00:00
R. Ryantm
e1a6a43833 parallel: 20240622 -> 20240722 2024-07-21 12:24:46 +00:00
github-actions[bot]
968bf02dc2
Merge master into staging-next 2024-07-21 12:01:16 +00:00
Peder Bergebakken Sundt
4619c4c492 remote-exec: migrate to pytest-cov-stub 2024-07-21 13:28:02 +02:00
Paul Meyer
be896c0d9b upower-notify: move to by-name, rename
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-07-21 10:44:27 +02:00
Paul Meyer
390fccd1e8 go-upower-notify: 0-unstable-2019-01-06 -> 0-unstable-2024-07-20
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-07-21 10:39:03 +02:00
Yureka
1747de4416 fd: disable shell completions for cross
Signed-off-by: Yureka <yureka@forkos.org>
2024-07-21 09:38:19 +02:00
Marcus Ramberg
34de8588f0
Merge pull request #327233 from r-ryantm/auto-update/fdupes 2024-07-21 10:17:17 +03:00
Marcus Ramberg
d3a0aa6600
Merge pull request #328294 from afh/update-modernize-nixfmt-tio 2024-07-21 10:13:53 +03:00
github-actions[bot]
be3262bae8
Merge master into staging-next 2024-07-21 00:02:58 +00:00
Peder Bergebakken Sundt
3e83036283
Merge pull request #328189 from glostis/update-autorandr
autorandr: 1.14 -> 1.15
2024-07-21 01:01:13 +02:00
Randy Eckenrode
7ce464459d
wv2: fix build with clang 16 and on Darwin
- Set the language version to C++14, so Synfig Studio can continue using the deprecated APIs; and
- Explicitly link gobject-2.0 on Darwin to avoid missing symbol errors when linking.
2024-07-20 10:33:44 -04:00
Vladimír Čunát
577f40b8a9
Merge branch 'staging' into staging-next 2024-07-20 16:12:24 +02:00
Randy Eckenrode
37a736fb85
wv: fix build with clang 16 and on Darwin
- Clang 16 makes implicit int conversions and incompatible function pointer types errors by default. Turn these into warnings; and
- Work around and issue with case-insensitive filesystems that prevents building on Darwin.
2024-07-20 10:07:02 -04: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
Randy Eckenrode
d5f637590e
tree-wide: enable LTO on Darwin 2024-07-20 03:19:54 -04:00
Alexis Hildebrandt
4cdf4202b2 pv: migrate to pkgs/by-name 2024-07-20 07:52:10 +02:00
Peder Bergebakken Sundt
cee191703f
Merge pull request #327730 from bbenno/graylog-5_2/update
graylog-5_2: 5.2.7 -> 5.2.9
2024-07-20 03:05:07 +02:00
Nick Cao
e628c17fd3
Merge pull request #328460 from r-ryantm/auto-update/gh-dash
gh-dash: 4.3.0 -> 4.4.0
2024-07-19 18:28:54 -04:00
github-actions[bot]
637b531dcf
Merge staging-next into staging 2024-07-19 18:01:40 +00:00
R. Ryantm
194b0db036 gh-dash: 4.3.0 -> 4.4.0 2024-07-19 15:20:52 +00:00
Peder Bergebakken Sundt
a18cc73972
Merge pull request #327879 from ereslibre/bump-wasm-tools
wasm-tools: 1.213.0 -> 1.214.0
2024-07-19 16:50:39 +02:00
github-actions[bot]
f316203fda
Merge staging-next into staging 2024-07-19 00:03:05 +00:00
Alexis Hildebrandt
45ddfc78e6 tio: migrate to by-name and modernize 2024-07-19 01:46:57 +02:00
Alexis Hildebrandt
cde663f7e5 tio: 2.8 -> 3.5 2024-07-19 01:39:09 +02:00
Nick Cao
043a71daef
Merge pull request #328064 from r-ryantm/auto-update/google-cloud-sql-proxy
google-cloud-sql-proxy: 2.11.4 -> 2.12.0
2024-07-18 19:05:01 -04:00
Sandro
ad32f96109
Merge pull request #327869 from SuperSandro2000/yt-dlp
yt-dlp: 2024.7.9 -> 2024.7.16
2024-07-18 22:58:53 +02:00
github-actions[bot]
401d4660b3
Merge staging-next into staging 2024-07-18 18:01:57 +00:00
Martin Weinelt
b907d82797
Merge pull request #325223 from mweinelt/typer-deps
python312Packages.typer: include optional dependencies
2024-07-18 18:54:53 +02:00
Martin Weinelt
3d12611232
python312Packages.typer: include standard optional
Typer specifies the standard optional-dependencies package list, but then
due to internal tooling includes it by default in Require-Dist.

https://github.com/tiangolo/typer/blob/0.12.3/pyproject.toml#L71-L72

This is in line with changes that happened in typer 0.12.1

https://github.com/tiangolo/typer/releases/tag/0.12.1
2024-07-18 18:54:10 +02:00
Martin Weinelt
57fe4f506a
Merge pull request #327911 from mweinelt/esphome-2024.7.0
esphome: 2024.6.6 -> 2024.7.0; build dashboard from source
2024-07-18 15:45:34 +02:00
Guillaume Lostis
151406c8ff autorandr: 1.14 -> 1.15 2024-07-18 15:26:51 +02:00
Randy Eckenrode
2f07b9556b
Merge pull request #328077 from reckenrode/cctools-darwin-aliases
tree-wide: use top-level cctools
2024-07-18 08:54:54 -04: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
Michael Hoang
b10c9c4824 gparted: fix GParted not running on Wayland
Fixes https://github.com/NixOS/nixpkgs/issues/299729
2024-07-18 14:17:19 +10:00
Randy Eckenrode
f9b7f4ec09
tree-wide: use top-level cctools 2024-07-17 22:36:19 -04:00
R. Ryantm
bfe372fd15 google-cloud-sql-proxy: 2.11.4 -> 2.12.0 2024-07-18 01:15:39 +00:00
Peder Bergebakken Sundt
b1afff0e77
Merge pull request #325751 from aaronjheng/pb
pb: 0.5.0 -> 0.5.1
2024-07-18 02:26:38 +02:00
Peder Bergebakken Sundt
b763aa7331
Merge pull request #326604 from squalus/pricehist
pricehist: 1.4.6 -> 1.4.7
2024-07-18 01:34:02 +02:00
Sandro
4f2e1fe9fd
Merge pull request #327198 from ThatLurker/update-yle-dl
yle-dl: 20240130 -> 20240706
2024-07-17 23:06:40 +02:00
Nick Cao
b9f2a1261d
Merge pull request #327808 from r-ryantm/auto-update/lokalise2-cli
lokalise2-cli: 3.0.0 -> 3.0.1
2024-07-17 16:23:20 -04:00
Nick Cao
21bc7496a3
Merge pull request #327741 from r-ryantm/auto-update/glasgow
glasgow: 0-unstable-2024-06-27 -> 0-unstable-2024-07-13
2024-07-17 16:12:48 -04:00
Artturin
20cf80e167 Merge branch 'staging-next' into staging 2024-07-17 21:29:37 +03: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
Martin Weinelt
7b5fa260f3
esphome: 2024.6.6 -> 2024.7.0
https://github.com/esphome/esphome/releases/tag/2024.7.0
2024-07-17 15:12:14 +02:00
Martin Weinelt
32c08ba0ca
esphome: build dashboard from source 2024-07-17 15:05:27 +02:00
Weijia Wang
427b043475
Merge pull request #327870 from thunze/gwe-setuptools
gwe: add setuptools for python 3.12
2024-07-17 14:35:58 +02:00
github-actions[bot]
5f93c1baee
Merge staging-next into staging 2024-07-17 12:01:41 +00:00
Vlad M.
7edc243443
Merge pull request #327814 from r-ryantm/auto-update/broot
broot: 1.39.1 -> 1.40.0
2024-07-17 14:18:28 +03:00
Weijia Wang
078fdedf26 Merge branch 'staging-next' into staging 2024-07-17 13:10:23 +02:00
Rafael Fernández López
8c69ea2cb6
wasm-tools: 1.213.0 -> 1.214.0 2024-07-17 12:21:05 +02:00
Sandro Jäckel
7f6c3bcf46
yt-dlp: 2024.7.9 -> 2024.7.16
Changelog: https://github.com/yt-dlp/yt-dlp/releases/tag/2024.7.16
2024-07-17 11:24:08 +02:00
Tom Hunze
f8e308d570
gwe: add setuptools for python 3.12
GWE still depends on distutils, which was removed in Python 3.12.
setuptools ships with a copy of distutils, so we can use it as a
workaround until GWE is fixed.
2024-07-17 11:20:25 +02:00
Pol Dellaiera
c651733248
Merge pull request #327787 from r-ryantm/auto-update/staruml
staruml: 6.1.2 -> 6.2.1
2024-07-17 09:21:03 +02:00
Robert Helgesson
4b118df632 svtplay-dl: fix build for Python 3.12
For now we simply disable checks for 3.12 and later.

Also enable pre and post check hooks.
2024-07-17 07:06:44 +02:00
R. Ryantm
8e8b3a0f18 broot: 1.39.1 -> 1.40.0 2024-07-17 05:04:42 +00:00
R. Ryantm
a676cbbf8c lokalise2-cli: 3.0.0 -> 3.0.1 2024-07-17 04:34:48 +00:00
R. Ryantm
2ec12b76b7 staruml: 6.1.2 -> 6.2.1 2024-07-17 01:52:07 +00:00
Kenny MacDermid
882c4a9d0a
aichat: add shell completion 2024-07-16 21:20:01 -03:00
R. Ryantm
ecd9e067ec glasgow: 0-unstable-2024-06-27 -> 0-unstable-2024-07-13 2024-07-16 21:01:02 +00:00
Benno Bielmeier
aabff57ea6 graylog-5_2: 5.2.7 -> 5.2.9 2024-07-16 21:53:43 +02:00
Benno Bielmeier
7a8a2eead7 graylog: refactor hash attribute
rel: https://github.com/NixOS/nixpkgs/pull/310349/files#r1597704399
2024-07-16 21:52:09 +02:00
github-actions[bot]
df8055b727
Merge staging-next into staging 2024-07-16 18:01:37 +00:00
Artturin
a516ea8c99 Merge branch 'staging-next' into staging 2024-07-16 19:07:48 +03:00
Sandro
0397741f8a
Merge pull request #324698 from bbenno/graylog-6_0 2024-07-16 14:24:21 +02:00
lassulus
7026675e42
Merge pull request #327602 from Melkor333/auto-update/mcfly
mcfly: 0.9.0 -> 0.9.1
2024-07-16 12:52:33 +02:00
Samuel Hierholzer (Adfinis AG)
c0a9d48d1a
refactor: move mcfly to by-name 2024-07-16 11:01:49 +02:00
ghpzin
fe7795d1da scfbuild: fix runtime error on Python 3.12 2024-07-15 21:09:26 +03:00
Masum Reza
0fb3d9d460
Merge pull request #324033 from liberodark/patch-1
nagstamon: 3.2.1 > 3.14.0
2024-07-15 22:33:03 +05:30
Weijia Wang
571ed1681e
Merge pull request #325073 from r-ryantm/auto-update/ugs
ugs: 2.1.7 -> 2.1.8
2024-07-15 16:27:13 +02:00
Weijia Wang
78ec604bfc
Merge pull request #325979 from r-ryantm/auto-update/vttest
vttest: 20240218 -> 20240708
2024-07-15 15:47:12 +02:00
R. Ryantm
11b3d86444 wootility: 4.6.20 -> 4.6.21 2024-07-15 15:26:43 +02:00
Weijia Wang
063ad6c3b6
Merge pull request #326977 from r-ryantm/auto-update/goreleaser
goreleaser: 2.0.1 -> 2.1.0
2024-07-15 14:13:02 +02:00
Aleksana
bfa89cac6b
Merge pull request #326859 from pyrox0/fetchcrate-no-sha256
treewide: sha256 -> hash for fetchCrate
2024-07-15 15:56:52 +08:00
Aleksana
ddadc59e58
Merge pull request #327091 from SFrijters/h5utils-cleanup
h5utils: cleanup
2024-07-15 15:00:39 +08:00
Michele Guerini Rocco
9f41a17895
Merge pull request #327188 from rnhmjoj/pr-bdf2psf
bdf2psf: 1.228 -> 1.229
2024-07-15 07:47:39 +02:00
R. Ryantm
db8eacb2f5 fdupes: 2.3.1 -> 2.3.2 2024-07-15 00:55:56 +00:00
Artturin
0f5c4d02af
Merge pull request #322430 from Pandapip1/wootility-add-xdg-desktop-file
wootility: Revamp
2024-07-15 01:48:22 +03:00
ThatLurker
1ef35e5a73 yle-dl: 20240130 -> 20240706
Changelog: https://github.com/aajanki/yle-dl/blob/20240706/ChangeLog
2024-07-14 22:53:52 +03:00