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
R. Ryantm
e7fce8c434
oculante: 0.8.22 -> 0.8.23
2024-07-30 00:11:26 +00: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
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
Vladimír Čunát
cd346565bb
Merge branch 'master' into staging-next
2024-07-24 07:19:19 +02:00
Aleksana
57429f749f
Merge pull request #328667 from reckenrode/synfigstudio-fixes
...
synfigstudio: fix build with clang 16 and add Darwin support
2024-07-24 11:47:31 +08:00
Aleksana
e108e37c9b
Merge pull request #328683 from reckenrode/vipsdisp-fixes
...
vipsdisp: fix build with clang
2024-07-24 11:45:12 +08:00
Nick Cao
6d366f0a20
Merge pull request #329279 from r-ryantm/auto-update/gscreenshot
...
gscreenshot: 3.6.1 -> 3.6.2
2024-07-23 11:08:12 -04:00
github-actions[bot]
5b4db4db1c
Merge master into staging-next
2024-07-23 06:01:09 +00:00
Randy Eckenrode
43b7874d7e
Merge pull request #328598 from reckenrode/icon-library-fixes
...
icon-library: use gettext from nixpkgs
2024-07-22 21:47:36 -04:00
R. Ryantm
9817a8c576
gscreenshot: 3.6.1 -> 3.6.2
2024-07-22 23:54:32 +00:00
Artturin
60e9cffe2c
Merge branch 'master' into staging-next
2024-07-22 22:53:31 +03:00
R. Ryantm
b7d684109e
lightburn: 1.6.03 -> 1.6.04
2024-07-22 17:15:59 +00:00
Jonas Heinrich
4edef1362f
sane-backends: configure and use lock dir
2024-07-22 16:46:30 +02:00
Jonas Heinrich
9ab8fb342a
sane-backends: 1.2.1 -> 1.3.1
2024-07-22 11:17:27 +02:00
Randy Eckenrode
00b9fc64d8
gnome-obfuscate: use gettext from nixpkgs
...
The vendored gettext fails to build with clang 16 on Darwin. The gettext in nixpkgs works.
2024-07-22 07:48:38 +00:00
Randy Eckenrode
40321f03b4
vipsdisp: fix build with clang
...
The build fails with clang due to trying to declare a variable in a case. Clang requires it to be in a new block.
2024-07-20 11:12:15 -04:00
Randy Eckenrode
71a5b13367
synfigstudio: fix build with clang 16 and add Darwin support
...
- Set the language version to C++14, so Synfig Studio can continue using the deprecated APIs; and
- Add the framesworks needed to build Synfig Studio on Darwin.
2024-07-20 10:07:44 -04:00
Randy Eckenrode
08f4ed25f2
icon-library: use gettext from nixpkgs
...
The vendored gettext fails to build with clang 16 on Darwin. The gettext in nixpkgs works.
2024-07-20 09:31:28 -04:00
github-actions[bot]
a6c20a7387
Merge staging-next into staging
2024-07-19 12:01:49 +00:00
Francesco Gazzetta
6524e59bb1
goxel: 0.14.0 -> 0.15.0
...
https://github.com/guillaumechereau/goxel/releases/tag/v0.15.0
Diff: https://github.com/guillaumechereau/goxel/compare/v0.14.0...v0.15.0
2024-07-19 09:53:26 +00:00
Artturin
20cf80e167
Merge branch 'staging-next' into staging
2024-07-17 21:29:37 +03:00
Weijia Wang
078fdedf26
Merge branch 'staging-next' into staging
2024-07-17 13:10:23 +02:00
Martin Joerg
62d4b6e775
cq-editor: remove remnant patch file
...
The package was removed in #311201 .
2024-07-17 08:32:02 +00:00
Weijia Wang
809c9f8677
Merge pull request #326830 from r-ryantm/auto-update/gscreenshot
...
gscreenshot: 3.5.1 -> 3.6.1
2024-07-17 03:38:46 +02:00
Weijia Wang
81dd4eeade
Merge pull request #327720 from dotlambda/imagemagick
...
imagemagick: drop unused arguments
2024-07-17 03:34:55 +02:00
Artturin
a516ea8c99
Merge branch 'staging-next' into staging
2024-07-16 19:07:48 +03:00
Robert Schütz
6d2349ba77
imagemagick: drop unused arguments
2024-07-16 06:21:24 -07:00
Robert Schütz
4484577b4b
Merge pull request #327307 from dotlambda/imagemagick
...
imagemagick: 7.1.1-34 -> 7.1.1-35
2024-07-16 01:50:17 -07:00
Thiago Kenji Okada
3ec86ec2a9
pinta: move to pkgs/by-name
2024-07-15 14:35:43 +01:00
Robert Schütz
b05c8baed0
imagemagick: 7.1.1-34 -> 7.1.1-35
...
Diff: https://github.com/ImageMagick/ImageMagick/compare/7.1.1-34...7.1.1-35
Changelog: https://github.com/ImageMagick/Website/blob/main/ChangeLog.md
2024-07-15 01:04:45 -07:00
github-actions[bot]
31817540ee
Merge staging-next into staging
2024-07-14 18:01:37 +00:00
Nick Cao
d1803cf0d1
Merge pull request #327084 from r-ryantm/auto-update/komikku
...
komikku: 1.50.0 -> 1.51.1
2024-07-14 11:13:11 -04: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
Aleksana
8536937b75
Merge pull request #327080 from Aleksanaa/fetchgit-sha256-fix
...
treewide: sha256 -> hash attribute for fetchgit
2024-07-14 20:56:04 +08:00
github-actions[bot]
0d7af056e2
Merge staging-next into staging
2024-07-14 12:02:04 +00:00
Aleksana
e8f2aabb01
Merge pull request #324767 from Sigmanificient/remove-unused-stdenv-arguments
...
treewide: remove unused occurence of stdenv (and other) arguments
2024-07-14 19:42:52 +08:00
R. Ryantm
b6daf6610f
komikku: 1.50.0 -> 1.51.1
2024-07-14 11:13:09 +00:00
aleksana
592e3845c4
treewide: sha256 -> hash attribute for fetchgit
2024-07-14 19:10:08 +08:00
Vladimír Čunát
211398c03e
Merge branch 'staging-next' into staging
2024-07-14 08:35:35 +02:00
Sigmanificient
512e8afdb9
treewide: remove unused occurence of stdenv (and other) arguments
...
format (will squash)
2024-07-14 04:32:56 +02:00
aleksana
1a89942243
treewide: sha256 -> hash attribute for gitlab.com fetchers
2024-07-13 22:28:37 +08:00
R. Ryantm
9158c43c06
gscreenshot: 3.5.1 -> 3.6.1
2024-07-13 13:52:36 +00:00
Ivan Mincik
444dcf383b
cloudcompare: fix source hash
2024-07-13 13:57:30 +02:00
éclairevoyant
0926bdbf98
treewide: fix uses of finalAttrs.pname
in source urls
2024-07-12 20:23:39 -04:00
github-actions[bot]
345035df51
Merge staging-next into staging
2024-07-13 00:02:49 +00:00
Jan Tojnar
990ebdbb5a
Merge pull request #325943 from jtojnar/wip-inkscape
...
python3.pkgs.inkex: Fix build
2024-07-12 22:05:01 +02:00
Jan Tojnar
1275c3f884
Merge branch 'staging-next' into staging
2024-07-12 21:36:23 +02:00
❄️
fe14ac8fc2
Merge pull request #324539 from atorres1985-contrib/remove-vrthra
...
treewide: remove vrthra, cpages and lovek323 from meta.maintainers
2024-07-12 14:26:56 -03:00
github-actions[bot]
b66506a79e
Merge staging-next into staging
2024-07-12 12:01:44 +00:00
OTABI Tomoya
d919897915
Merge pull request #324022 from r-ryantm/auto-update/python311Packages.f3d
...
python311Packages.f3d: 2.4.0 -> 2.5.0
2024-07-12 15:02:23 +09:00
Vladimír Čunát
2c053848df
Merge branch 'master' into staging
2024-07-11 22:05:05 +02:00
Artturin
53fbcae6c7
Merge pull request #240602 from uninsane/gthumb-webservices
...
gthumb: make the webservices feature be optional
2024-07-11 22:27:53 +03:00
Weijia Wang
3c1f45f393
Merge pull request #324706 from r-ryantm/auto-update/cloudcompare
...
cloudcompare: 2.13.1 -> 2.13.2
2024-07-11 09:36:05 +02:00
R. Ryantm
b6c3d52a02
cloudcompare: 2.13.1 -> 2.13.2
2024-07-11 02:08:23 +02:00
John Chadwick
bf05070350
hydrus: re-enable tests on 3.12
2024-07-10 19:26:29 -04:00
Martin Weinelt
176a56c40f
Merge remote-tracking branch 'origin/staging-next' into staging
...
Conflicts:
- pkgs/applications/misc/blender/default.nix
- pkgs/development/web/nodejs/nodejs.nix
2024-07-11 01:06:28 +02:00
Peder Bergebakken Sundt
524fe38405
f3d: set vtk enableEgl
2024-07-10 20:56:18 +08:00
Jan Tojnar
c8ceed2cf3
inkscape: Improve precision of distribute along path
...
We are already applying this patch to inkex.
2024-07-09 23:46:13 +02:00
Masum Reza
5509a93cbf
Merge pull request #323099 from tomodachi94/enhance/batik/modernize
...
batik: refactor, modernize
2024-07-09 23:09:04 +05:30
Martin Weinelt
fae12c5929
hydrus: revert to nose, disable tests on 3.12
2024-07-09 17:27:18 +02:00
Daniel Olsen
8720d160bb
hydrus: switch nose with pynose for python312 compat
2024-07-08 20:59:51 +02:00
Daniel Olsen
f9d18fb5c4
hydrus: 580 -> 581
...
Diff: https://github.com/hydrusnetwork/hydrus/compare/refs/tags/v580...v581
2024-07-08 20:49:32 +02:00
Vladimír Čunát
4c09ae2416
Merge branch 'staging-next' into staging
2024-07-08 10:43:15 +02:00
Anderson Torres
9ffac6dc44
treewide: remove vrthra from meta.maintainers [all orphans]
...
Tracking issue: https://github.com/NixOS/nixpkgs/issues/290642
Inactive since 2017
2024-07-07 12:20:32 -03:00
Markus Kowalewski
046e14d2a6
Merge pull request #323852 from sheepforce/pixinsight
...
pixinsight: 1.8.9-3-20240619 -> 1.8.9-3-20240625
2024-07-07 12:00:53 +00:00
github-actions[bot]
1f5f0905f8
Merge staging-next into staging
2024-07-06 12:01:49 +00:00
Aleksana
929750f954
Merge pull request #322531 from getchoo/pkgs/identity/adopt
...
identity: adopt; refactor
2024-07-06 18:37:38 +08: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
fda13875da
Merge remote-tracking branch 'origin/master' into staging-next
...
Conflicts:
- pkgs/development/python-modules/deebot-client/default.nix
- pkgs/development/python-modules/pytest-examples/default.nix
- pkgs/development/python-modules/w3lib/default.nix
2024-07-05 13:04:01 +02:00
Aleksana
f15b44e5f2
Merge pull request #324505 from r-ryantm/auto-update/komikku
...
komikku: 1.49.0 -> 1.50.0
2024-07-05 14:07:36 +08:00
github-actions[bot]
30cfd4445f
Merge master into staging-next
2024-07-05 00:02:21 +00:00
Peder Bergebakken Sundt
91cc2986c9
Merge pull request #322290 from dali99/update_hydrus2
...
hydrus: 578->579, add deps for MS Officeand better OS filemanager integration
2024-07-04 20:56:48 +02:00
github-actions[bot]
e14242d985
Merge staging-next into staging
2024-07-04 12:01:37 +00:00
github-actions[bot]
9cede82051
Merge master into staging-next
2024-07-04 12:01:10 +00:00
davisrichard437
5604a6f2dc
fiji: 20201104-1356 -> 20240614-2117 ( #323874 )
...
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2024-07-04 13:34:49 +02: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
R. Ryantm
ead02acd4e
komikku: 1.49.0 -> 1.50.0
2024-07-04 07:55:53 +00:00
Masum Reza
410d1213cd
Merge pull request #323983 from Aleksanaa/cargoSha256-change
...
treewide: remove all cargoSha256 usage
2024-07-04 10:50:18 +05:30
Nick Cao
1a959c0658
Merge pull request #324355 from davisrichard437/gscreenshot
...
gscreenshot: 3.5.0 -> 3.5.1
2024-07-03 19:41:17 -04:00
Mathew Polzin
93de96df6a
drawio: 24.6.1 -> 24.6.4
...
https://github.com/jgraph/drawio-desktop/releases/tag/v24.6.4
2024-07-03 15:10:59 -05:00
github-actions[bot]
d449302be6
Merge staging-next into staging
2024-07-03 18:01:32 +00:00
Vladimír Čunát
c76085b3a9
Merge branch 'master' into staging-next
2024-07-03 19:07:35 +02:00
Richard Davis
c6d90fd20d
gscreenshot: 3.5.0 -> 3.5.1
...
https://github.com/thenaterhood/gscreenshot/releases/tag/v3.5.1
2024-07-03 10:26:34 -04:00
aleksana
a9709c299b
treewide: change cargoSha256 with SRI hash to cargoHash
2024-07-03 21:53:11 +08:00
Weijia Wang
cd43d05d95
Merge pull request #318203 from Scrumplex/pkgs/monado/unstable-update-1
...
monado: unstable-2024-01-02 -> 24.0.0
2024-07-03 14:20:54 +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
Sandro
d1892ee68f
Merge pull request #306734 from fgaz/drawpile/2.2.1
...
drawpile: 2.1.20 -> 2.2.1, cleanup
2024-07-02 20:34:40 +02:00
github-actions[bot]
aeba07ddb1
Merge staging-next into staging
2024-07-02 18:03:03 +00:00
K900
ac42e4ac39
Merge remote-tracking branch 'origin/master' into staging-next
2024-07-02 19:52:45 +03:00
h7x4
07b17c71da
Merge pull request #323565 from pacien/pkgs-gscan2pdf-2-13-3
...
gscan2pdf: 2.13.2 -> 2.13.3
2024-07-02 18:49:15 +02:00
R. Ryantm
c0301968f7
python311Packages.f3d: 2.4.0 -> 2.5.0
2024-07-02 12:25:47 +00: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
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
Lily Foster
c678743f80
treewide: remove lilyinstarlight
2024-07-02 03:17:01 +02:00
Weijia Wang
3e0bf322da
Merge pull request #318970 from r-ryantm/auto-update/lightburn
...
lightburn: 1.6.00 -> 1.6.03
2024-07-01 23:39:35 +02:00
github-actions[bot]
cf53d1b2a1
Merge staging-next into staging
2024-07-01 18:01:44 +00:00
github-actions[bot]
1addc8dd4c
Merge master into staging-next
2024-07-01 18:01:14 +00:00
R. Ryantm
ba0c8ba2c4
lightburn: 1.6.00 -> 1.6.03
2024-07-01 17:39:32 +00:00
Phillip Seeber
843524e068
pixinsight: 1.8.9-3-20240619 -> 1.8.9-3-20240625
2024-07-01 19:34:08 +02:00
R. Ryantm
b294dd81cc
shotwell: 0.32.6 -> 0.32.7
2024-07-01 22:54:57 +08:00
Alyssa Ross
629d1dc03e
Merge remote-tracking branch 'origin/master' into staging-next
...
Conflicts:
pkgs/development/lua-modules/generated-packages.nix
2024-07-01 14:34:32 +02:00
Jan Tojnar
e3a06d65ff
gnome-themes-extra: Move from gnome scope to top-level
...
Upstream archived.
2024-07-01 08:26:49 +02:00
Jan Tojnar
b69ed4249d
zenity: Move from gnome scope to top-level
...
It is widely used outside gnome, not much inside.
2024-07-01 08:26:47 +02:00
Jan Tojnar
5c5c20919b
adwaita-icon-theme: Move from gnome scope to top-level
...
It is widely used outside gnome – although it probably should not be.
2024-07-01 08:26:46 +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
826a3127fc
perlPackages.Gnome2: Remove
...
Not used by anything and deprecated for decades.
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
Naïm Favier
fa659ed79e
feh: 3.10.2 -> 3.10.3
...
https://feh.finalrewind.org/archive/3.10.3/
2024-06-30 22:46:17 +02:00
Sefa Eyeoglu
416ba8804b
treewide: use addDriverRunpath
...
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-06-30 15:01:01 -04:00
Sefa Eyeoglu
66a06e2861
monado: move to by-name
...
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-06-30 14:29:14 -04:00
Sefa Eyeoglu
a81c0cd8ab
monado: unstable-2024-01-02 -> 24.0.0
...
Signed-off-by: Sefa Eyeoglu <contact@scrumplex.net>
2024-06-30 14:28:46 -04:00
Matthias Beyer
e149d2b8c0
Merge pull request #322317 from r-ryantm/auto-update/yed
...
yed: 3.23.2 -> 3.24
2024-06-30 19:29:46 +02:00
Matthias Beyer
ce5661e2c5
Merge pull request #322562 from r-ryantm/auto-update/azpainter
...
azpainter: 3.0.7 -> 3.0.8
2024-06-30 17:27:42 +02:00
Francesco Gazzetta
38d8cfea7e
drawpile: assert that at least one component is built
2024-06-30 17:13:09 +02:00
Francesco Gazzetta
a3f473bdc1
drawpile: remove global with lib;
2024-06-30 17:13:09 +02:00
Francesco Gazzetta
bb24d44078
drawpile: use lib.cmake*, remove unused flags
2024-06-30 17:13:09 +02:00
Francesco Gazzetta
8618b4e48b
drawpile: set mainProgram to the client when appropriate
2024-06-30 17:13:06 +02:00
Francesco Gazzetta
dbc68fa02f
drapwile: specify gpl3Plus
2024-06-30 17:12:02 +02:00
Francesco Gazzetta
672766aca5
drawpile: 2.1.20 -> 2.2.1
...
Diff: https://github.com/drawpile/drawpile/compare/2.1.20...2.2.1
2024-06-30 17:12:02 +02:00
euxane
f4e6872fc1
gscan2pdf: 2.13.2 -> 2.13.3
...
Changelog: https://sourceforge.net/p/gscan2pdf/code/ci/v2.13.3/tree/History
GitHub: closes #292991 (gscan2pdf: can not open Edit->Preferences)
2024-06-30 12:59:10 +02:00
Pol Dellaiera
b7fc505b47
Merge pull request #323481 from sifmelcara/krita-5-2-3
...
krita: 5.2.2 -> 5.2.3
2024-06-30 12:44:42 +02:00
Ming-Chuan
25baeb2155
krita: 5.2.2 -> 5.2.3
2024-06-29 16:27:10 -07:00
Daniel Olsen
c99f178ddb
hydrus: 578 -> 580
...
Diff: https://github.com/hydrusnetwork/hydrus/compare/refs/tags/v578...v579
2024-06-29 18:36:12 +02:00
R. Ryantm
31be2ec63c
pineapple-pictures: 0.7.4 -> 0.8.0
2024-06-29 14:08:01 +00:00
K900
bde999c03e
Merge branch 'master' into staging-next
2024-06-29 10:13:13 +03:00
Aleksana
ff0ae7634d
Merge pull request #323002 from r-ryantm/auto-update/komikku
...
komikku: 1.48.1 -> 1.49.0
2024-06-28 20:59:56 +08:00
Daniel Olsen
0aebf8fac8
hydrus: add deps for MS Office and better OS filemanager integration
2024-06-28 14:01:23 +02:00
github-actions[bot]
2f3bfad6d2
Merge master into staging-next
2024-06-28 00:02:11 +00:00
Weijia Wang
7b51980125
Merge pull request #322727 from r-ryantm/auto-update/xv
...
xv: 5.0.0 -> 5.2.0
2024-06-27 23:08:28 +02:00
R. Ryantm
1167d18991
komikku: 1.48.1 -> 1.49.0
2024-06-27 19:57:29 +00:00
Martin Weinelt
d50a1e97b1
Merge remote-tracking branch 'origin/master' into staging-next
2024-06-27 16:16:01 +02:00
Aleksana
79cb6e98b3
Merge pull request #321057 from Aleksanaa/emblem
...
emblem: 1.3.0 -> 1.4.0
2024-06-27 17:00:02 +08:00
Tomodachi94
58417cac95
batik: move to pkgs/by-name
2024-06-26 17:10:11 -07:00
Cameron Bytheway
7677e0f78e
openscad: fix lib3mf linking
...
This change explicitly sets the LIB3MF_INCLUDEPATH and LIB3MF_LIBPATH
environment variables instead of relying on `pkg-config` resolution.
This is due to the following issues with the existing build logic:
* The library name was using `lib3MF` instead of `lib3mf`. `pkg-config`
is case-sensitive and is unable to find the former.
* The current `lib3mf` nix artifact exports multiple language bindings
in the `includedir`. Each language needs to refer to the correct path
inside of it.
2024-06-26 17:38:36 -06:00
R. Ryantm
1634b8deb2
xv: 5.0.0 -> 5.2.0
2024-06-26 19:49:38 +00:00
R. Ryantm
772b12befe
azpainter: 3.0.7 -> 3.0.8
2024-06-26 03:28:10 +00:00
seth
a7d82e8023
identity: migrate to by-name
2024-06-25 20:53:55 -04:00
github-actions[bot]
08b5c3c46a
Merge master into staging-next
2024-06-25 18:01:20 +00:00
Gavin John
d44635fa98
monado: Use lib.cmakeBool
2024-06-25 09:15:56 -05:00
R. Ryantm
980f04d774
yed: 3.23.2 -> 3.24
2024-06-25 03:19:47 +00:00
Martin Weinelt
c02aa9b62f
Merge remote-tracking branch 'origin/master' into staging-next
...
Conflicts:
- pkgs/development/python-modules/pixel-font-builder/default.nix
- pkgs/development/python-modules/unidata-blocks/default.nix
2024-06-24 15:35:04 +02:00
github-actions[bot]
88140ced6d
Merge master into staging-next
2024-06-24 12:01:17 +00:00
Gavin John
b6815f8570
monado: Use cmake flag instead of patch
2024-06-24 06:36:27 -05:00
Pavol Rusnak
e18e94bb6d
Merge pull request #322016 from Pandapip1/monado-enable-debug
2024-06-24 12:28:49 +02:00
github-actions[bot]
c1d6d547af
Merge staging-next into staging
2024-06-24 06:01:33 +00:00
Ryan Hendrickson
aa38b88028
imagemagick: 7.1.1-33 -> 7.1.1-34
2024-06-23 22:40:03 -04:00
Weijia Wang
873346871d
emblem: fix build on darwin
2024-06-24 00:39:41 +02:00
Gavin John
29709f87d7
monado: Enable FEATURE_TRACING
2024-06-23 13:28:20 -05: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
Phillip Seeber
ff924bfb46
pixinsight: 1.8.9-2-20230920 -> 1.8.9-3-20240619
2024-06-23 14:43:46 +02:00
Pol Dellaiera
7337043ff6
Merge pull request #320555 from Aleksanaa/exhibit
...
exhibit: init at 1.2.0; enable f3d and vtk external rendering, add f3d python module
2024-06-23 09:50:28 +02:00
Masum Reza
fa208e2ded
Merge pull request #321849 from rhendric/rhendric/imagemagick
...
imagemagick: 7.1.1-32 -> 7.1.1-33
2024-06-23 11:40:43 +05:30
Tristan Ross
a2eb1536cf
Merge pull request #321614 from paperdigits/darktable48
...
darktable: 4.6.1 -> 4.8.0
2024-06-22 20:57:16 -07:00
Ryan Hendrickson
429e84cd05
imagemagick: 7.1.1-32 -> 7.1.1-33
2024-06-22 16:23:54 -04:00
Masum Reza
a13270c552
Merge pull request #309406 from mrnossiom/fix/add-ozone-wl-flag-figma-linux
...
figma-linux: add NIXOS_OZONE_WL workaround
2024-06-23 01:25:46 +05:30
Emily
8696744ce9
treewide: clean up uses of lib{GL,GLU,glut}.dev
...
These were now broken on Darwin; most of them were unnecessary,
but best practice for the remaining ones is to use `lib.getDev`.
2024-06-22 18:06:51 +01:00
Emily
fbda1dbfd6
treewide: replace freeglut with libglut
...
Allow the macOS GLUT framework to be used automatically in many
cases. Packages that specifically search for freeglut or require its
additional APIs should still explicitly depend on it.
Deliberately skip the Haskell package set, which is mostly
automatically generated, and mupdf, which has its own fork of freeglut.
2024-06-22 18:06:51 +01:00
Masum Reza
2ec0c360fe
Merge pull request #287566 from ScatteredRay/djv-openexr
...
djv: Adding OpenEXR Support
2024-06-22 20:30:39 +05:30
P.
7e1ff7bd73
treewide: remove wolfangaukang as maintainer
2024-06-22 07:03:16 -06:00
DarkOnion0
6a4f40eb8d
drawio: 24.4.8 -> 24.6.1
...
https://github.com/jgraph/drawio-desktop/releases/tag/v24.6.1
2024-06-22 10:34:31 +02:00
Mica Semrick
135767c763
darktable: 4.6.1 -> 4.8.0
2024-06-21 15:26:54 -07:00
Indy Ray
286a1ee6d8
djv: Adding OpenEXR Support
...
Just adding openexr.dev as an input, and patching FindOpenEXR.cmake to find the correct directory.
2024-06-20 13:07:51 -07:00
aleksana
cdff8ddb0b
emblem: add aleksana as maintainer
2024-06-19 23:46:36 +08:00
aleksana
cd0da047e1
emblem: 1.3.0 -> 1.4.0
2024-06-19 23:46:17 +08:00
github-actions[bot]
446fc5bdf3
Merge staging-next into staging
2024-06-19 00:03:05 +00:00
Ivan Mincik
78b123a5d1
Merge pull request #320290 from quantenzitrone/laszip
...
LASzip{,2}: rename to laszip{,_2}
2024-06-18 19:08:36 +00: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
aleksana
7bd1f036c4
f3d: enable external rendering
2024-06-18 12:02:36 +08:00
Aleksana
a81321e73b
Merge pull request #267944 from 6t8k/djview_4.10.6-4.12
...
djview: 4.10.6 -> 4.12
2024-06-18 02:30:09 +08:00
aleksana
6ffd76f080
python3Packages.f3d: add python module
2024-06-17 23:00:00 +08:00
Zitrone
ad99f94c46
LASzip{,2}: rename to laszip{,_2}
2024-06-17 10:24:57 +02:00
Gaetan Lepage
1eca3fd31c
brlcad: 7.34.2 -> 7.38.2
...
Changelog: https://github.com/BRL-CAD/brlcad/releases/tag/rel-7-38-2
2024-06-16 13:47:57 +02:00
github-actions[bot]
d9f598edbe
Merge staging-next into staging
2024-06-16 06:01:20 +00:00
h7x4
319b44d26d
Merge pull request #320041 from chuangzhu/komikku
...
komikku: 1.47.0 -> 1.48.1
2024-06-16 03:25:47 +02:00
6t8k
0fb9dc1375
djview: 4.10.6 -> 4.12
...
Changelog:
https://sourceforge.net/p/djvu/djview-git/ci/release.4.12/tree/NEWS
The release tarball no longer contains a configure script, so pull in
the necessary dependencies to generate it here.
Disable building the `nsdejavu` plugin as modern browsers have dropped
support for NPAPI. The `npdjvu` plugin is based on NPAPI too, so remove
the respective note.
Split `man` output from `out`.
2024-06-15 21:11:41 +02:00
Chuang Zhu
0317150a75
komikku: 1.47.0 -> 1.48.1
2024-06-15 20:19:13 +08:00
Aleksana
ee9cf00e6d
Merge pull request #315240 from Cryolitia/ghost-font
...
ghostscript: add output `fonts`
2024-06-15 19:32:39 +08:00
Matthias Beyer
eaf48429f1
Merge pull request #317330 from r-ryantm/auto-update/apitrace
...
apitrace: 11.1 -> 12.0
2024-06-14 09:21:41 +02:00
h7x4
3ac9c7a0b2
Merge pull request #308762 from r-ryantm/auto-update/hydrus
...
hydrus: 572 -> 578
2024-06-12 21:29:00 +02:00
Vladimír Čunát
f81af2207e
Merge #316428 : unigine-heaven: Set mainProgram to heaven
2024-06-12 20:00:35 +02:00
R. Ryantm
e965f81784
curtail: 1.9.1 -> 1.10.0
2024-06-11 21:21:47 +00:00
R. Ryantm
dddb3b1c40
hydrus: 572 -> 578
2024-06-09 22:47:20 +00: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
Aleksana
0c11926f56
Merge pull request #315933 from zendo/upd/mangareader
...
mangareader: 2.1.0 -> 2.2.1
2024-06-08 14:00:58 +08:00
R. Ryantm
2e21e651d4
apitrace: 11.1 -> 12.0
2024-06-05 02:17:35 +00:00
Icy-Thought
03715437be
upscayl: 2.11.0 -> 2.11.5
2024-06-02 00:10:04 +02:00
Pol Dellaiera
439832d6bf
Merge pull request #293022 from symphorien/nixos_module_sane_disabled_backed_word_boundary
...
nixos/sane: fix disabling backends which are subwords of other backends
2024-06-01 22:39:00 +02:00
Florian RICHER
198cae60b3
unigine-heaven: Set mainProgram to heaven
2024-06-01 15:39:07 +02:00
Jan Tojnar
c7535769b8
Merge pull request #303748 from TuxCoder/inkscape_eps
...
inkscape: fix path patch
2024-06-01 09:40:24 +02:00
R. Ryantm
7da279c3b9
vengi-tools: 0.0.31 -> 0.0.32
2024-05-31 17:20:40 +00:00
Aleksana
a3847e23a2
Merge pull request #315174 from DarkOnion0/drawio
...
drawio: 24.4.0 -> 24.4.8
2024-05-31 22:47:21 +08:00
zendo
42029a9e64
mangareader: move to by-name
2024-05-30 23:22:21 +08:00
Francesco Gazzetta
f478e1cb40
gnome-obfuscate: 0.0.9 -> 0.0.10
...
Diff: https://gitlab.gnome.org/World/Obfuscate/-/compare/0.0.9...0.0.10
2024-05-29 08:50:38 +00:00
北雁 Cryolitia
93a9ca34fe
ghostscript: add output fonts
2024-05-28 11:50:34 +08:00
DarkOnion0
1ebd24c155
drawio: 24.4.0 -> 24.4.8
...
https://github.com/jgraph/drawio-desktop/releases/tag/v24.4.8
2024-05-27 21:32:57 +02:00
R. Ryantm
a5e81ceadd
figma-linux: 0.11.3 -> 0.11.4
2024-05-27 02:30:16 +00:00
Matthias Beyer
2db90361e0
Merge pull request #314247 from r-ryantm/auto-update/komikku
...
komikku: 1.46.0 -> 1.47.0
2024-05-26 14:06:04 +02:00
Gutyina Gergő
bc62c50c0a
rnote: mark as broken on darwin ( #314292 )
2024-05-25 07:56:14 +00:00
Aleksana
295b63fd4d
Merge pull request #313938 from pbsds/fix-f3d-1716455665
...
f3d: unbreak on darwin
2024-05-25 13:15:18 +08:00
R. Ryantm
739d6f8f91
komikku: 1.46.0 -> 1.47.0
2024-05-24 10:12:26 +00:00
Aleksana
3e4b79f710
Merge pull request #311820 from dotlambda/imagemagick
...
imagemagick: fix passthru.tests.pkg-config
2024-05-24 15:01:42 +08:00
Peder Bergebakken Sundt
dc4209a00a
f3d: add withManual option, by default disabled on darwin
...
should fix darwin
2024-05-23 23:06:13 +02:00
Sandro
dc2ac5f4ea
Merge pull request #312447 from luftmensch-luftmensch/imgbrd-grabber_7.12.2
2024-05-23 13:45:02 +02:00
Peder Bergebakken Sundt
67d4cea69d
f3d: condition autoPatchelfHook on isElf
...
should fix darwin
2024-05-23 11:17:39 +02:00