Commit Graph

404 Commits

Author SHA1 Message Date
Peder Bergebakken Sundt
e0c09c1bef
open62541: 1.4.4 -> 1.4.6 (#346691) 2024-10-14 01:19:46 +02:00
R. Ryantm
129d2c22a0 open-vm-tools: 12.4.5 -> 12.5.0 2024-10-11 06:21:57 +00:00
Franz Pletz
ae8c1e57f7
treewide: use mirror urls (#347454) 2024-10-10 13:05:23 +02:00
Franz Pletz
cbdcccc96b
openapi-changes: 0.0.67 -> 0.0.68 (#347507) 2024-10-10 00:05:49 +02:00
Pol Dellaiera
02383fe945
openpgl: 0.5.0 -> 0.7.0 (#347179) 2024-10-09 21:09:15 +02:00
Maximilian Güntner
ba0b0353bd
openapi-changes: 0.0.67 -> 0.0.68
Diff: https://github.com/pb33f/openapi-changes/compare/v0.0.67...v0.0.68

Changelog: https://github.com/pb33f/openapi-changes/releases/tag/v0.0.68

switched to `buildGo123Module` temporarily
2024-10-09 17:02:30 +02:00
Peder Bergebakken Sundt
918baba8d2 openctm: use mirror url 2024-10-09 12:04:04 +02:00
7c6f434c
7e0b1e1361
openscad-unstable: 2024-09-22 -> 2024-10-06 (#347129) 2024-10-08 19:21:46 +00:00
R. Ryantm
f1e6a9e066 openpgl: 0.5.0 -> 0.7.0 2024-10-07 21:15:21 +00:00
Henner Zeller
082981147c openscad-unstable: 2024-09-22 -> 2024-10-06 2024-10-07 09:42:52 -07:00
Nick Cao
734eb849e2
openfga: 1.6.1 -> 1.6.2 (#346516) 2024-10-07 11:01:21 -04:00
Pol Dellaiera
551c0f1ec4
open-webui: 0.3.30 -> 0.3.32 (#347030)
diff: https://github.com/open-webui/open-webui/compare/v0.3.30..v0.3.32
changelog: https://github.com/open-webui/open-webui/releases/tag/v0.3.32
2024-10-07 13:27:45 +02:00
Nicolas Benes
7bd2b83753 open62541: 1.4.4 -> 1.4.6
https://github.com/open62541/open62541/releases/tag/v1.4.5
https://github.com/open62541/open62541/releases/tag/v1.4.6
2024-10-06 20:57:36 +02:00
R. Ryantm
187df3f293 openapi-tui: 0.9.4 -> 0.10.0 2024-10-05 02:43:29 +00:00
R. Ryantm
5c4963ae17 openfga: 1.6.1 -> 1.6.2 2024-10-04 21:04:21 +00:00
Peder Bergebakken Sundt
cd673393d2 treewide: remove unreferenced patch files
Found with `fd \\.patch$ pkgs/ -x bash -c 'rg -F "{/}" pkgs/ -q || echo {}'``

We're running more and more into patches fetched via `applyPatches`, for the next PR i'll script something to account for that.
2024-10-04 19:38:56 +02:00
R. Ryantm
b71679c5a4 opencomposite: 0-unstable-2024-09-13 -> 0-unstable-2024-10-02 2024-10-02 20:43:15 +00:00
OTABI Tomoya
bf712bf937
openjph: 0.15.0 -> 0.17.0 (#343896) 2024-09-30 22:01:12 +09:00
Adam C. Stephens
f451c38542
openvswitch: remove kernel, add tests (#344653) 2024-09-27 07:03:12 -04:00
R. Ryantm
717ebfc056 opencomposite: 0-unstable-2024-07-23 -> 0-unstable-2024-09-13 2024-09-26 22:45:23 +00:00
Adam Stephens
52335fc1b0
openvswitch: init simple bridge test and add incus test 2024-09-26 09:26:10 -04:00
Adam Stephens
666014dbf9
openvswitch: remove legacy kernel module building
As of Linux 3.3 the openvswitch kernel module is part of the mainline
kernel.
2024-09-26 09:23:00 -04:00
Pol Dellaiera
ec02fa6d39 open-webui: 0.3.29 -> 0.3.30
diff: https://github.com/open-webui/open-webui/compare/v0.3.29..v0.3.30
changelog: https://github.com/open-webui/open-webui/releases/tag/v0.3.30
2024-09-26 10:28:52 +02:00
Pol Dellaiera
04914842b9 open-webui: 0.3.28 -> 0.3.29
diff: https://github.com/open-webui/open-webui/compare/v0.3.28..v0.3.29
changelog: https://github.com/open-webui/open-webui/releases/tag/v0.3.29
2024-09-25 16:32:23 +02:00
Pol Dellaiera
962b73a5bc
open-webui: 0.3.21 -> 0.3.28 (#343205) 2024-09-25 04:20:14 +02:00
Artturin
63fa53d97c treewide: reformat files which need reformatting after
`treewide: replace stdenv.is with stdenv.hostPlatform.is`
2024-09-25 00:04:39 +03:00
Artturin
e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
Pol Dellaiera
71e4edb8cb open-webui: 0.3.21 -> 0.3.28
Diff: https://github.com/open-webui/open-webui/compare/refs/tags/v0.3.21...0.3.28

Changelog:
  - https://github.com/open-webui/open-webui/blob/refs/tags/v0.3.22/CHANGELOG.md
  - https://github.com/open-webui/open-webui/blob/refs/tags/v0.3.23/CHANGELOG.md
  - https://github.com/open-webui/open-webui/blob/refs/tags/v0.3.24/CHANGELOG.md
  - https://github.com/open-webui/open-webui/blob/refs/tags/v0.3.25/CHANGELOG.md
  - https://github.com/open-webui/open-webui/blob/refs/tags/v0.3.26/CHANGELOG.md
  - https://github.com/open-webui/open-webui/blob/refs/tags/v0.3.27/CHANGELOG.md
  - https://github.com/open-webui/open-webui/blob/refs/tags/v0.3.28/CHANGELOG.md
2024-09-24 19:24:26 +02:00
Konrad Malik
14c922afe0 openapi-python-client: init at 0.21.5 2024-09-24 13:46:23 +02:00
R. Ryantm
5d3c605f5f openjph: 0.15.0 -> 0.17.0 2024-09-23 06:59:18 +00:00
nixpkgs-merge-bot[bot]
a34f54aa6c
openmsx: 19.1 -> 20_0 (#343741) 2024-09-22 22:51:07 +00:00
Henner Zeller
ec4de830a0 openscad-unstable: 2024-08-17 -> 2024-09-22 2024-09-22 11:44:20 -07:00
Henner Zeller
a4022f8c22 openscad-unstable: 2024-08-17 -> 2024-09-19 2024-09-22 11:25:34 -07:00
R. Ryantm
c6568aadde openmsx: 19.1 -> 20_0 2024-09-22 14:59:52 +00:00
nixpkgs-merge-bot[bot]
f28e9e6aad
openfga: 1.6.0 -> 1.6.1 (#342758) 2024-09-21 14:43:17 +00:00
Peder Bergebakken Sundt
8aa42ae0d9
treewide: remove CMAKE_BUILD_TYPE from cmakeFlags (#336854) 2024-09-19 22:32:31 +02:00
R. Ryantm
3319236587 openfga: 1.6.0 -> 1.6.1 2024-09-18 09:12:25 +00:00
R. Ryantm
5d547dbac4 openfga-cli: 0.6.0 -> 0.6.1 2024-09-18 06:12:00 +00:00
Anderson Torres
f0e64ce16f treewide: migrate packages maintained by AndersonTorres to by-name
Manual migration for the sake of by-name migration is no longer discouraged
since #340235.
2024-09-16 14:26:47 -03:00
Nikolay Korotkiy
f543b1b986
open62541: enable on unix (#340199) 2024-09-15 16:45:02 +04:00
nicoo
2641d97cbf pkgs/by-name: Convert hashes to SRI format
Reproduction script:
	# Bulk rewrite
	./maintainers/scripts/sha-to-sri.py pkgs/by-name
	# Revert some packages which will need manual intervention
	for n in amdvlk azure-cli cargo-profiler corefonts flatito fluxcd gist perf_data_converter protoc-gen-js solana-cli swt verible; do
		git checkout -- "pkgs/by-name/${n:0:2}/${n}"
	done
2024-09-15 11:24:31 +02:00
R. Ryantm
57679d3f71 openvas-scanner: 23.8.5 -> 23.9.0 2024-09-15 02:03:12 +00:00
Alyssa Ross
df61c2acb5 treewide: remove executable bit from .nix files
???
2024-09-14 13:08:57 +02:00
Peder Bergebakken Sundt
cc2a69f86c
opencomposite-helper: drop (#340334) 2024-09-13 01:50:34 +02:00
Nikolay Korotkiy
60c736c2ce
open62541: enable on unix 2024-09-12 10:05:40 +04:00
Henner Zeller
f375272c16 openscad-unstable: mark broken.
Context: issue #341043
2024-09-11 08:37:47 -07:00
github-actions[bot]
f2b767ea43
Merge master into staging-next 2024-09-09 00:14:38 +00:00
nixpkgs-merge-bot[bot]
49ba5e4e45
opensplatWithCuda: 1.1.3 -> 1.1.4 (#336575) 2024-09-08 23:47:04 +00:00
github-actions[bot]
3eeaa2e678
Merge master into staging-next 2024-09-08 12:04:49 +00:00
Pol Dellaiera
8e8e7c5ae0
open-webui: 0.3.20 -> 0.3.21
Diff: https://github.com/open-webui/open-webui/compare/refs/tags/v0.3.20...0.3.21

Changelog: https://github.com/open-webui/open-webui/blob/refs/tags/v0.3.21/CHANGELOG.md
2024-09-08 09:29:11 +02:00