Commit Graph

6797 Commits

Author SHA1 Message Date
Martin Weinelt
9ccfa87721
Merge pull request #332764 from NixOS/staging-next
staging-next 2024-08-06
2024-08-14 13:33:28 +02:00
Ben Darwin
ea92738f92 paraview: 5.12.0 -> 5.12.1 2024-08-13 13:22:53 -04:00
Ben Darwin
a8f5edc39c paraview: apply nixfmt 2024-08-13 13:16:07 -04:00
github-actions[bot]
a473a12c7d
Merge master into staging-next 2024-08-11 18:01:11 +00:00
Florian Klink
d025091b35 glew: enable both EGL and GLX
Re-roll of https://github.com/NixOS/nixpkgs/pull/328907, but this time
adding the patch from ArchLinux, which keeps both EGL and GLX code paths
active.

Remove overrides where EGL was explicitly requested previously, as well
as the glew-egl package variant.

Add an alias for glew-egl, in case there's any users of this outside
of nixpkgs.
2024-08-11 15:11:22 +03:00
github-actions[bot]
7b86eb63e7
Merge master into staging-next 2024-08-09 12:01:12 +00:00
Weijia Wang
73c0b5f730
Merge pull request #332100 from wegank/photoqt-bump
photoqt: 4.5 -> 4.6
2024-08-09 09:33:38 +02:00
github-actions[bot]
eddd97e1fd
Merge staging-next into staging 2024-08-06 06:01:44 +00:00
Donovan Glover
b989c5fa27
Merge pull request #332490 from r-ryantm/auto-update/komikku
komikku: 1.51.1 -> 1.52.0
2024-08-06 04:46:09 +00:00
github-actions[bot]
3b5460f093
Merge staging-next into staging 2024-08-06 00:02:48 +00:00
Nick Cao
ef4e8c0cbc
Merge pull request #329206 from r-ryantm/auto-update/lightburn
lightburn: 1.6.03 -> 1.6.04
2024-08-05 19:37:59 -04:00
R. Ryantm
64ce455297 komikku: 1.51.1 -> 1.52.0 2024-08-05 13:32:49 +00:00
Vladimír Čunát
d4720e9c1e
Merge branch 'staging-next' into staging
There was a nontrivial conflict in pkgs/stdenv/linux/bootstrap-tools*
(reorganizing code vs. modifying it)  I hope I really got it right.
2024-08-05 11:05:55 +02:00
Weijia Wang
0eedcb2eb0 photoqt: move to pkgs/by-name, format 2024-08-04 01:16:41 +02:00
R. Ryantm
22a6c4f19d goxel: 0.15.0 -> 0.15.1 2024-08-03 18:27:59 +00:00
Anselm Schüler
e1354a3538
maintainers: partially remove anselmschueler 2024-08-03 19:09:47 +02:00
github-actions[bot]
746071163c
Merge staging-next into staging 2024-08-03 06:01:24 +00: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]
fe3585d6db
Merge staging-next into staging 2024-08-02 06:01:37 +00:00
github-actions[bot]
203fa1d4a2
Merge staging-next into staging 2024-08-02 00:02:35 +00:00
eljamm
0dbf5b7b90
processing: fix build 2024-08-02 00:47:15 +01:00
eljamm
2570854a2a
processing: format with nixfmt 2024-08-02 00:47:15 +01:00
Robert Schütz
dce731c8ea
Merge pull request #331379 from trofi/imagemagick-update
imagemagick: 7.1.1-35 -> 7.1.1-36
2024-08-01 14:42:40 -07:00
K900
a4a42b3aec Merge remote-tracking branch 'origin/staging-next' into staging 2024-08-01 08:57:50 +03:00
Sergei Trofimovich
948d7ba778 imagemagick: 7.1.1-35 -> 7.1.1-36
Changes: https://github.com/ImageMagick/ImageMagick/releases/tag/7.1.1-36
2024-07-31 22:19:01 +01:00
Johannes Jöns
bb597e6273
Merge pull request #330648 from emilazy/push-kzllwxyyqvtu
{qt5,qt6}.qtwebengine: add patches for FFmpeg 7
2024-07-31 19:36:28 +02:00
K900
0bfa3d044d Revert "darktable: fix build"
This reverts commit 7b67b4bebc.

Fixed properly in libavif.
2024-07-31 08:58:36 +03:00
ajs124
7b67b4bebc darktable: fix build 2024-07-30 17:01:53 +02:00
Nick Cao
d450475cd1
Merge pull request #330678 from r-ryantm/auto-update/xpano
xpano: 0.18.1 -> 0.19.0
2024-07-29 15:33:08 -04:00
Emily
a402e62e07 openboard: add patches for FFmpeg 7
These are already shipped in the AUR package.
2024-07-29 11:07:22 +01: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
R. Ryantm
3a46d96dde xpano: 0.18.1 -> 0.19.0 2024-07-28 15:26:41 +00: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
Anderson Torres
c9deae12d7 treewide: remove viric from meta.maintainers [no orphans]
Since theey is not active from at least six years.
2024-07-28 10:47:12 -03:00
tomberek
d94fe8dbab
Merge pull request #330288 from dotlambda/rnote
rnote: 0.10.2 -> 0.11.0
2024-07-28 00:23:38 -04:00
K900
24076029d2 Merge remote-tracking branch 'origin/master' into staging-next 2024-07-28 01:04:35 +03:00
Someone
63cc38bf10
Merge pull request #324545 from paparodeo/treewide-strict-deps-fixes
treewide: fix packages that use cmake strict deps when cmake strict deps works
2024-07-27 22:19:23 +03:00
Peder Bergebakken Sundt
fff62c98e4
Merge pull request #330068 from adisbladis/f3d-plugins
f3d: Add opencascade-occt & assimp plugins
2024-07-27 16:16:01 +02:00
Nick Cao
fbea0058d7
Merge pull request #329793 from r-ryantm/auto-update/darktable
darktable: 4.8.0 -> 4.8.1
2024-07-27 10:14:11 -04:00
Vladimír Čunát
64c6a981fe
Merge branch 'master' into staging-next 2024-07-27 09:18:58 +02:00
Robert Schütz
dd09d70cc8 rnote: 0.10.2 -> 0.11.0
Diff: https://github.com/flxzt/rnote/compare/v0.10.2...v0.11.0

Changelog: https://github.com/flxzt/rnote/releases/tag/v0.11.0
2024-07-26 14:42:53 -07:00
Fabian Freihube
df6e2c4311 xournalpp: fix missing icons that prevent start 2024-07-26 20:10:46 +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
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
Sigmanificient
2ee703dccb pkgs/applications: remove unused arguments 2024-07-26 11:36:49 +02:00
adisbladis
fdc3257164 f3d: Add opencascade-occt & assimp plugins
This enables support for:
- Assimp plugin (FBX, OFF, DAE, DXF, X and 3MF)
- OpenCASCADE plugin (STEP and IGES files)
2024-07-26 17:10:36 +12:00
Reno Dakota
4bf065f7df
panotools: fix strict deps
move perl to nativeBuildInputs
2024-07-25 07:19:32 +00:00
R. Ryantm
781ad4172a darktable: 4.8.0 -> 4.8.1 2024-07-25 02:32:33 +00:00
github-actions[bot]
94c17d2caa
Merge master into staging-next 2024-07-25 00:02:30 +00:00
Guillaume Girol
bbd80e97f9
Merge pull request #328459 from onny/sane-backends-fix
sane-backends: 1.2.1 -> 1.3.1
2024-07-24 20:40:47 +02:00