Commit Graph

107741 Commits

Author SHA1 Message Date
R. Ryantm
ecf7eb976f ytree: 2.04 -> 2.05 2023-08-29 03:06:30 +00:00
Artturi
aff9f87b8e
Merge pull request #252046 from MaxHearnden/nomad
nomad: use $NIX_BUILD_TOP for build directory
2023-08-29 04:03:44 +03:00
Nick Cao
0c88788db5
Merge pull request #251924 from LudovicoPiero/armcord-update
armcord: 3.2.3 -> 3.2.4
2023-08-29 08:10:15 +08:00
Nick Cao
dbb569b853
Merge pull request #251980 from LudovicoPiero/nwg-panel-bump
nwg-panel: 0.9.11 -> 0.9.12
2023-08-29 08:04:29 +08:00
Artturi
4c229ced52
Merge pull request #251958 from uninsane/pr-cross-tuba
tuba: support cross compilation
2023-08-29 01:24:39 +03:00
Theodore Ni
44ad670fb4
Merge pull request #248932 from r-ryantm/auto-update/ecs-agent
ecs-agent: 1.73.1 -> 1.75.0
2023-08-28 15:16:11 -07:00
MaxHearnden
fd2cba036c nomad: use $NIX_BUILD_TOP for build directory
The preCheck step would add /build/go/bin to PATH which is incorrect
when the build directory is somewhere else (e.g. on most mac systems)

fixes https://github.com/NixOS/nixpkgs/issues/251885
2023-08-28 22:39:47 +01:00
Anderson Torres
bea9b4cb72 x16-emulator: 43 -> 44 2023-08-28 20:15:12 +00:00
R. Ryantm
bb58b49f1c x16-rom: 43 -> 44 2023-08-28 20:15:12 +00:00
Matthias Beyer
b63225c946
Merge pull request #251997 from figsoda/glicol
glicol-cli: init at 0.2.0
2023-08-28 21:56:36 +02:00
Matthias Beyer
9aeca0cb8e
Merge pull request #252003 from surfaceflinger/walk-1.6.2
walk: 1.5.2 -> 1.6.2
2023-08-28 21:52:29 +02:00
Matthias Beyer
812899dcf8
Merge pull request #252013 from adamcstephens/squeezelite/1449
squeezelite: 1.9.9.1430 -> 1.9.9.1449
2023-08-28 21:52:08 +02:00
Theodore Ni
336e03c10b
Merge pull request #249575 from chuangzhu/komikku
komikku: 1.22.0 -> 1.23.0
2023-08-28 12:04:04 -07:00
figsoda
83ac5b3af2
Merge pull request #251642 from figsoda/vim 2023-08-28 14:15:41 -04:00
Adam Stephens
ab26980675
squeezelite: 1.9.9.1430 -> 1.9.9.1449 2023-08-28 13:47:20 -04:00
Kira Bruneau
074dea1e11
Merge pull request #251077 from kira-bruneau/krane
krane: 3.1.0 -> 3.3.0
2023-08-28 12:42:15 -04:00
K900
b07fffd56e
Merge pull request #252004 from nadimkobeissi/colord-kde
colord-kde: fix missing buildInput
2023-08-28 19:27:19 +03:00
Nadim Kobeissi
e1854055c8 colord-kde: fix missing buildInput
Added a buildInput that is not strictly required for the package
to compile, but without which the package will not actually work at all.
2023-08-28 18:19:18 +02:00
nat
5e3bb2d3f4
walk: 1.5.2 -> 1.6.2 2023-08-28 18:17:56 +02:00
figsoda
7668df9e05 glicol-cli: init at 0.2.0
https://github.com/glicol/glicol-cli
2023-08-28 12:05:43 -04:00
rewine
2cc480a38f vnote: 3.16.0 -> 3.17.0 2023-08-28 16:01:52 +00:00
Lin Jian
7d4ea94d02 emacs: keep the default first writable native-comp-eln-load-path dir
Fixes https://github.com/NixOS/nixpkgs/issues/247804.
2023-08-28 15:46:04 +00:00
Lin Jian
2d324ed8f9 emacs: fix the detection of native compilation for Emacs 29
In Emacs 29, feature comp does not load early enough.  We use
native-compile instead.  This is also what Emacs uses[1].

[1]: https://git.savannah.gnu.org/cgit/emacs.git/tree/lisp/startup.el?id=3685387e609753293c4518be75e77c659c3b2d8d#n586
2023-08-28 15:46:04 +00:00
Lin Jian
1506ab49e3 emacs: correct the order of profiles and their sub dirs in load-path
This patch does two things:
1. making user profiles preferred over system profiles
2. putting sub dirs of one profile to the right place
  - before this patch, they are appended to the end of load-path
  - after this patch, they are inserted right after the profile

Example value of load-path before this patch:

  /run/current-system/sw/share/emacs/site-lisp/
  /etc/profiles/per-user/user/share/emacs/site-lisp/
  /nix/store/hash1-emacs-packages-deps/share/emacs/site-lisp
  /nix/store/hash1-emacs-packages-deps/share/emacs/site-lisp/elpa
  /nix/store/hash1-emacs-packages-deps/share/emacs/site-lisp/elpa/wgrep-20230203.1214
  /nix/store/hash2-emacs-29.1-rc1/share/emacs/29.1/site-lisp
  /nix/store/hash2-emacs-29.1-rc1/share/emacs/site-lisp
  /nix/store/hash2-emacs-29.1-rc1/share/emacs/29.1/lisp
  /nix/store/hash2-emacs-29.1-rc1/share/emacs/29.1/lisp/vc
  ...
  /etc/profiles/per-user/user/share/emacs/site-lisp/elpa
  /etc/profiles/per-user/user/share/emacs/site-lisp/elpa/jinx-20230730.1200
  /run/current-system/sw/share/emacs/site-lisp/elpa
  /run/current-system/sw/share/emacs/site-lisp/elpa/repology-1.2.3

after this patch:

  /etc/profiles/per-user/user/share/emacs/site-lisp
  /etc/profiles/per-user/user/share/emacs/site-lisp/elpa
  /etc/profiles/per-user/user/share/emacs/site-lisp/elpa/jinx-20230730.1200
  /run/current-system/sw/share/emacs/site-lisp
  /run/current-system/sw/share/emacs/site-lisp/elpa
  /run/current-system/sw/share/emacs/site-lisp/elpa/repology-1.2.3
  /nix/store/hash1-emacs-packages-deps/share/emacs/site-lisp
  /nix/store/hash1-emacs-packages-deps/share/emacs/site-lisp/elpa
  /nix/store/hash1-emacs-packages-deps/share/emacs/site-lisp/elpa/wgrep-20230203.1214
  /nix/store/hash2-emacs-29.1-rc1/share/emacs/29.1/site-lisp
  /nix/store/hash2-emacs-29.1-rc1/share/emacs/site-lisp
  /nix/store/hash2-emacs-29.1-rc1/share/emacs/29.1/lisp
  /nix/store/hash2-emacs-29.1-rc1/share/emacs/29.1/lisp/vc
  ...
2023-08-28 15:46:04 +00:00
Emily
70508e024e
Merge pull request #251613 from pschmitt/obs-freeze-filter
obs-studio-plugins.obs-freeze-filter: init at 0.3.3
2023-08-28 16:26:36 +02:00
Ludovico Piero
676525be5f
nwg-panel: 0.9.11 -> 0.9.12 2023-08-29 00:22:47 +10:00
Ludovico Piero
f6c5130ce5
armcord: add ludovicopiero as a maintainer 2023-08-29 00:16:07 +10:00
R. Ryantm
2cf01b0450 linkerd: 2.13.6 -> 2.14.0 2023-08-28 13:57:29 +00:00
Sandro Jäckel
0944e19139 betterbird: 102.12.0-bb37 → 102.14.0-bb39 2023-08-28 15:28:57 +02:00
Philipp Schmitt
fc0e6da378
obs-studio-plugins.obs-freeze-filter: init at 0.3.3 2023-08-28 15:26:10 +02:00
Pol Dellaiera
38e7c600ad
Merge pull request #218394 from xyven1/master
spotify-player: make build options configurable
2023-08-28 15:24:03 +02:00
Colin
fc1121488c tuba: support cross compilation
gobject-introspection is needed in nativeBuildInputs to fix
"error: Package <...> not found in specified Vala API directories
or GObject-Introspection GIR directories".
2023-08-28 11:37:11 +00:00
Paul Zeinlinger
838fea9a55 pdfcpu: 0.4.1 -> 0.5.0 2023-08-28 12:32:41 +02:00
Florian Klink
c6228eda46
Merge pull request #251862 from r-ryantm/auto-update/talosctl
talosctl: 1.4.7 -> 1.5.0
2023-08-28 11:39:29 +03:00
Anthony Roussel
65fe58d067
commitizen: 3.5.2 -> 3.7.0
https://github.com/commitizen-tools/commitizen/compare/v3.5.2...3.7.0

https://github.com/commitizen-tools/commitizen/releases/tag/3.7.0
https://github.com/commitizen-tools/commitizen/releases/tag/3.6.0
2023-08-28 10:20:32 +02:00
Ludovico Piero
c9b9a3a38f
armcord: 3.2.3 -> 3.2.4 2023-08-28 17:45:31 +10:00
Alexandre Acebedo
b86adcb628
swaynotificationcenter: backport PR 296 2023-08-28 08:33:54 +02:00
Lassulus
40c205bbeb
Merge pull request #251565 from hellwolf/insync-issue-244813
insync: fix bwrap namespaces
2023-08-28 07:59:02 +02:00
OTABI Tomoya
00a6142d86
Merge pull request #251193 from lopsided98/pymavlink-update
mavproxy, python3Packages.pymavlink: update
2023-08-28 14:29:03 +09:00
github-actions[bot]
b499f97cf5 terraform-providers.ucloud: 1.36.1 -> 1.37.0 2023-08-28 14:43:34 +10:00
Mario Rodas
28d93b854b sioyek: fix build 2023-08-28 04:20:00 +00:00
Nick Cao
48516a891d
Merge pull request #251861 from r-ryantm/auto-update/mympd
mympd: 11.0.3 -> 11.0.4
2023-08-28 09:05:07 +08:00
Nick Cao
34f3dbd2ef
Merge pull request #251798 from wineee/pineapple-pictures
pineapple-pictures: 0.7.1 -> 0.7.2
2023-08-28 08:50:07 +08:00
R. Ryantm
d25e1e766a talosctl: 1.4.7 -> 1.5.0 2023-08-27 23:59:55 +00:00
R. Ryantm
97357247c9 mympd: 11.0.3 -> 11.0.4 2023-08-27 23:47:59 +00:00
7c6f434c
81eeee0174
Merge pull request #251357 from r-ryantm/auto-update/wine64Packages.unstable
wine64Packages.unstable: 8.13 -> 8.14
2023-08-27 23:37:55 +00:00
Michael Raskin
7c6847bfc9 winePackages: add reckenrode as a maintainer 2023-08-28 00:43:57 +02:00
Maciej Krüger
e0b74ead2d
odoo15: remove updatescript 2023-08-28 00:12:36 +02:00
Maciej Krüger
b0ace70d46
odoo: use fetchzip 2023-08-28 00:12:36 +02:00
Maciej Krüger
9fa3a8b629
odoo15: 15.0.20230317->15.020230816 fix broken fetcher
Upstream seems to publish and retain `.zip` more consistently than `.tar.gz`, which caused the previous expression to break. This modifies the odoo package and updater script to use the `zip` sources.
2023-08-28 00:12:27 +02:00
Theodore Ni
c68a6a21ca
Merge pull request #247909 from Sigmanificient/ragnarwm
ragnarwm: init at 1.3.1
2023-08-27 13:41:04 -07:00
Michael Weiss
35dc9499c7
Merge pull request #251760 from primeos/chromium-chromedriver
chromium: Fix the chromedriver version
2023-08-27 22:29:08 +02:00
Michael Weiss
6bee469fa1
Merge pull request #251762 from primeos/chromiumBeta
chromiumBeta: 116.0.5845.50 -> 117.0.5938.22
2023-08-27 22:09:17 +02:00
Michael Weiss
dc210be2a3
Merge pull request #251761 from primeos/chromiumDev
chromiumDev: 117.0.5897.3 -> 118.0.5966.0
2023-08-27 22:09:00 +02:00
K900
f900e733c1
Merge pull request #250778 from NixOS/staging-next
staging-next 2023-08-22
2023-08-27 20:22:51 +03:00
figsoda
1792924a76 rust-traverse: init at 2.0.0
https://github.com/dmcg310/Rust-Traverse
2023-08-27 12:40:56 -04:00
rewine
6eef340c21 pineapple-pictures: 0.7.1 -> 0.7.2 2023-08-27 23:55:28 +08:00
Ryan Lahfa
af32e3f251
Merge pull request #251779 from r-ryantm/auto-update/gitRepo 2023-08-27 17:16:44 +02:00
Mario Rodas
a44ca32fdc
Merge pull request #251777 from kilianar/logseq-0.9.15
logseq: 0.9.14 -> 0.9.15
2023-08-27 10:10:14 -05:00
R. Ryantm
1496732e75 gitRepo: 2.35 -> 2.36 2023-08-27 13:50:26 +00:00
kilianar
a112af674d logseq: 0.9.14 -> 0.9.15
https://github.com/logseq/logseq/releases/tag/0.9.15
2023-08-27 15:27:28 +02:00
Mario Rodas
f814e24fc1
Merge pull request #251735 from liff/notmuch-emacs-check
notmuch: don’t check with emacs when withEmacs=false
2023-08-27 08:18:43 -05:00
Mario Rodas
009cd1ea77
Merge pull request #251742 from matthiasbeyer/update-taskwarrior-tui
taskwarrior-tui: 0.25.1 -> 0.25.2
2023-08-27 08:18:00 -05:00
Mario Rodas
062aaf9220
Merge pull request #245434 from nagy/emacs-pikchr
emacsPackages.pikchr-mode: replace program
2023-08-27 08:12:56 -05:00
Maciej Krüger
c3ed95307e
Merge pull request #251413 from karolinschlegel/init-odoo-v15
odoo15: init at 15.0-20230720
2023-08-27 14:10:04 +02:00
github-actions[bot]
859a8f3bfa
Merge master into staging-next 2023-08-27 12:01:03 +00:00
Michael Weiss
6f74163d4a
chromiumBeta: 116.0.5845.50 -> 117.0.5938.22 2023-08-27 12:32:00 +02:00
Michael Weiss
7ce7e093e8
chromiumDev: 117.0.5897.3 -> 118.0.5966.0 2023-08-27 12:31:37 +02:00
Michael Weiss
ed9c38b3fa
chromium: Fix the chromedriver version
Chromium was updated to M116 but the ChromeDriver version wasn't.
2023-08-27 12:28:36 +02:00
Thomas Gerbet
f01d3e2b73
Merge pull request #248716 from LeSuisse/ssm-agent-3.2.1297.0
ssm-agent: 3.0.755.0 -> 3.2.1297.0
2023-08-27 11:58:26 +02:00
Thomas Gerbet
88d154fed5
Merge pull request #251025 from buckley310/2023-08-23-brave
brave: 1.57.47 -> 1.57.53
2023-08-27 11:49:24 +02:00
Matthias Beyer
b1fa4e7472
taskwarrior-tui: 0.25.1 -> 0.25.2
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
2023-08-27 11:10:35 +02:00
Randy Eckenrode
bdf47492d4 wine64Packages.unstable: Darwin compatibility fixes
- Wine 8.12 changed the implementation of `macdrv_get_gpus_from_metal`,
  causing the patch used by nixpkgs to break. This patch splits that
  patch up to apply cleanly depending on the version;
- Silence an implicit pointer to integer conversion warning due to the
  above patch (required by the Clang 16 stdenv bump);
- Add the PCSC framework on Darwin, which is required as of Wine 8.14.

Wine 8.14 changes the implementation of `macdrv_get_gpus_from_metal`,
causing the patch to no longer apply cleanly. Splitting the patch allows
only the parts that are still needed to apply cleanly dependin gon the
Wine version being built.
2023-08-27 10:58:27 +02:00
K900
a4f237ccbc yuzu: 1522 -> 1538, yuzu-ea: 3805 -> 3838 2023-08-27 11:52:41 +03:00
Olli Helenius
1f28d8b6cc
notmuch: don’t check with emacs when withEmacs=false 2023-08-27 11:31:53 +03:00
Matthias Beyer
3641ad58b3
Merge pull request #250946 from SuperSamus/bottles-update
bottles: 51.6 -> 51.9
2023-08-27 10:17:08 +02:00
K900
43e3435a90 AusweisApp2: fix build 2023-08-27 10:54:58 +03:00
Karolin Schlegel
4eee509d25 odoo15: init at 15.0-20230720
This contribution adds `odoo15` as a fixed version. To allow reusing the
existing test for Odoo, I made the package attribute configurable. To
reference the test for `odoo15` in `passthru` I added it to
`all-tests.nix`.
2023-08-27 09:52:43 +02:00
Daniel Nagy
1159c64f58
emacsPackages.pikchr-mode: replace program 2023-08-27 09:15:00 +02:00
R. Ryantm
89c4fdc1ab webex: 43.5.0.26155 -> 43.8.0.26955 2023-08-27 07:12:04 +00:00
github-actions[bot]
d78f502c6b
Merge master into staging-next 2023-08-27 06:00:58 +00:00
Mario Rodas
a2028f6033 flexget: 3.9.4 -> 3.9.5
Diff: https://github.com/Flexget/Flexget/compare/refs/tags/v3.9.4...v3.9.5

Changelog: https://github.com/Flexget/Flexget/releases/tag/v3.9.5
2023-08-27 04:20:00 +00:00
laura
688ab6699b harsh: init at 0.8.28 2023-08-27 05:16:21 +02:00
Theodore Ni
c173b99c6c
Merge branch 'master' into staging-next
Resolve correctly the three-way merge between https://github.com/NixOS/nixpkgs/pull/251681,
https://github.com/NixOS/nixpkgs/pull/227900, and https://github.com/NixOS/nixpkgs/pull/246022
2023-08-26 19:00:58 -07:00
Nick Cao
cf2004afe4
Merge pull request #249053 from r-ryantm/auto-update/dataexplorer
dataexplorer: 3.7.9 -> 3.8.0
2023-08-27 09:19:47 +08:00
Nick Cao
669985852a
Merge pull request #250952 from pinpox/update-morgen-3.0.0
morgen: 2.7.5 -> 3.0.0
2023-08-27 09:18:16 +08:00
Nick Cao
b705fcf9f1
Merge pull request #250924 from PowerUser64/lsp-plugins
lsp-plugins: 1.2.8 -> 1.2.10
2023-08-27 09:16:52 +08:00
tomberek
87ef861f43
Merge pull request #246985 from hannesbraun/airwindows-lv2-22.0
airwindows-lv2: 20.0 -> 22.0
2023-08-26 21:11:37 -04:00
Bobby Rong
9980d249ad
Merge pull request #251495 from bobby285271/upd/planify
planify: 4.1 -> 4.1.1
2023-08-27 09:08:36 +08:00
tomberek
f3a2dd53ff
Merge pull request #250756 from dinkypumpkin/get_iplayer
get_iplayer: removed unnecessary dependencies
2023-08-26 21:01:39 -04:00
Nick Cao
fe13c03665
Merge pull request #251528 from r-ryantm/auto-update/nwg-dock-hyprland
nwg-dock-hyprland: 0.1.4 -> 0.1.5
2023-08-27 08:49:55 +08:00
github-actions[bot]
47ae3f6c28
Merge master into staging-next 2023-08-27 00:02:24 +00:00
Theodore Ni
dfbd88a730
Merge pull request #200202 from kyren/aseprite-update
aseprite-unfree: 1.2.16.3 -> 1.2.40 and drop the free version
2023-08-26 16:53:25 -07:00
R. Ryantm
061b238aaf furnace: 0.6pre8 -> 0.6pre9 2023-08-26 23:26:03 +00:00
Theodore Ni
80a74ec050
Merge branch 'master' into staging-next
Manually fixed a merge conflict between https://github.com/NixOS/nixpkgs/pull/227900
and https://github.com/NixOS/nixpkgs/pull/246022.
2023-08-26 16:08:02 -07:00
kyren
7c2a459244 aseprite: drop free version and alias to unfree version
The free version of Aseprite has a maintained fork, LibreSprite which is
already packaged in nixpkgs. The only really useful version of Aseprite
vs LibreSprite is the unfree version, and the free version will never
receive updates.
2023-08-26 19:03:38 -04:00
kyren
eeaa0526a3 aseprite-unfree: 1.2.16.3 -> 1.2.40
Also updates aseprite skia fork and skia deps, includes the following
patches from AUR:

- shared-libwebp.patch
- shared-skia-deps.patch
2023-08-26 19:03:31 -04:00
Franz Pletz
855af023c9
Merge pull request #251606 from marsam/update-docker-slim 2023-08-27 00:49:57 +02:00
Franz Pletz
cd153e8b48
Merge pull request #251672 from tjni/kitty 2023-08-27 00:40:50 +02:00
Theodore Ni
b48037703b
kitty: no need to disable strictoverflow hardening 2023-08-26 14:08:52 -07:00