Commit Graph

16156 Commits

Author SHA1 Message Date
R. Ryantm
40d460c2a9 oelint-adv: 5.6.0 -> 5.7.0 2024-06-27 06:54:57 +00:00
R. Ryantm
11a563d226 orchard: 0.19.1 -> 0.20.0 2024-06-27 05:06:20 +00:00
Christina Sørensen
e643fd5bba
eza: 0.18.19 -> 0.18.20
Signed-off-by: Christina Sørensen <christina@cafkafk.com>
2024-06-27 06:28:07 +02:00
Redyf
e978f13bbb affine: 0.14.3 -> 0.14.9 2024-06-26 22:26:20 -03:00
R. Ryantm
8c7e22809b wayidle: 0.1.1 -> 0.2.0 2024-06-27 00:39:21 +00:00
jade
c4e5920816
Merge pull request #322603 from vigress8/pegtl
pegtl: init at 3.2.7
2024-06-26 15:45:43 -07:00
Nick Cao
3e95ce1bd7
Merge pull request #322510 from r-ryantm/auto-update/fzf-make
fzf-make: 0.34.0 -> 0.35.0
2024-06-26 18:41:16 -04:00
Nick Cao
f59b1a0bd1
Merge pull request #322525 from r-ryantm/auto-update/c2patool
c2patool: 0.9.3 -> 0.9.4
2024-06-26 18:38:46 -04:00
Nick Cao
a3e97863b6
Merge pull request #322670 from r-ryantm/auto-update/cue
cue: 0.9.1 -> 0.9.2
2024-06-26 18:35:02 -04:00
Nick Cao
657ebbcf73
Merge pull request #322728 from Anomalocaridid/handlr-regex-0.10.1
handlr-regex: 0.10.0 -> 0.10.1
2024-06-26 18:25:44 -04:00
Nick Cao
d0c7a141f0
Merge pull request #322659 from r-vdp/wstunnel-9_7_2
wstunnel: 9.7.1 -> 9.7.2
2024-06-26 18:12:21 -04:00
Nikolay Korotkiy
9d5a155f72
Merge pull request #322380 from SeineEloquenz/televido_040
televido: 0.3.0 -> 0.4.0
2024-06-27 01:56:13 +04:00
R. Ryantm
94d49419f8 vcpkg: 2024.05.24 -> 2024.06.15 2024-06-26 21:27:36 +00:00
Nick Cao
ce2d35711a
Merge pull request #322671 from r-ryantm/auto-update/clipcat
clipcat: 0.18.0 -> 0.18.1
2024-06-26 16:50:45 -04:00
Nick Cao
a17e477795
Merge pull request #322675 from r-ryantm/auto-update/git-instafix
git-instafix: 0.2.4 -> 0.2.5
2024-06-26 16:49:52 -04:00
Nick Cao
bdff2b93a2
Merge pull request #322638 from r-ryantm/auto-update/codeberg-cli
codeberg-cli: 0.4.0 -> 0.4.2
2024-06-26 16:47:50 -04:00
nixpkgs-merge-bot[bot]
ea9cd521db
Merge pull request #322604 from r-ryantm/auto-update/zpaqfranz
zpaqfranz: 59.8 -> 59.9
2024-06-26 20:30:36 +00:00
Jonas Chevalier
7d1463ec48
Merge pull request #317827 from selfuryon/chore/kcl-refactor
kcl: refactor
2024-06-26 22:07:06 +02:00
Pavel Sobolev
4a48decea2 cppcheck: 2.14.1 -> 2.14.2 2024-06-26 22:05:13 +02:00
Pavel Sobolev
cf7a400d31 cppcheck: reformat 2024-06-26 22:05:13 +02:00
Pavel Sobolev
6b36d73885 cppcheck: move to pkgs/by-name 2024-06-26 22:05:13 +02:00
Anomalocaridid
0aff8c5ede handlr-regex: 0.10.0 -> 0.10.1 2024-06-26 15:52:12 -04:00
0x4A6F
cb0b65ff84
Merge pull request #322684 from LudovicoPiero/bump-lgogdownloader
lgogdownloader: 3.12 -> 3.14; cleanup
2024-06-26 21:47:38 +02:00
Sandro
1719216ed6
Merge pull request #306216 from Tommimon/master
mcontrolcenter: init at 0.4.1
2024-06-26 21:38:03 +02:00
Someone
cb69dc5b8d
Merge pull request #256230 from SomeoneSerge/feat/gpu-tests-py
GPU access in the sandbox
2024-06-26 19:16:53 +00:00
Alexandros Liarokapis
e36b4564d2 nanopb: 0.4.6 -> 0.4.8
This commit:
- Bumps the nanopb version
- Adds all runtime configuration options
- Implements proper cross-compilation support which is the main use-case of the library.
- Uses newer `finalAttrs` form of `mkDerivation` to allow for easier attribute overrides.

The cross-compilation support is achieved by splitting the package into two sub-packages
consisting of the build-time generator and the runtime library.

Nanopb explicitely supports this by providing specialized `GENERATOR` and
`RUNTIME` CMake configuration options.

The top-level package uses `propagatedNativeBuildInputs` and `propagatedBuildInputs` to propagate
the sub-packages and also adds convenient symlinks to make certain use cases easier.

== GENERATOR ==

The generator is a mostly ready-to-be-packaged python module tree.
We patch the library to also include the missing `__init__.py` and we
also fix the `PYTHON_INSTDIR` variable to follow best practice and to
prevent the library from attempting to install to a global directory.

We package the python module using `buildPythonPackage` and internally
override python in order to wrap the `nanopb_generator.py` executable.

We do *not* wrap `nanob_generator.py` due to it also being imported directly from python when
used through `protoc-gen-nanopb`.

== RUNTIME ==

The runtime is a simple library that consists of the common
functionality among generated headers/sources.

It is configured through `preprocessor definitions` and consumer projects *must*
be compiled with the same definitions.

This is currently achieved by exposing all configuration options through the top-level overrides and
patching the CMakeLists.txt so that the definitions are added to the to-be-installed
CMake targets as PUBLIC properties.
2024-06-26 22:15:27 +03:00
nixpkgs-merge-bot[bot]
fba0991e11
Merge pull request #322692 from r-ryantm/auto-update/pinact
pinact: 0.2.0 -> 0.2.1
2024-06-26 18:42:35 +00:00
Fabian Affolter
955dd26c09
Merge pull request #322481 from r-ryantm/auto-update/openvas-scanner
openvas-scanner: 23.4.1 -> 23.5.0
2024-06-26 20:19:36 +02:00
Ludovico Piero
e18b0c24a2
lgogdownloader: move to pkgs/by-name
Signed-off-by: Ludovico Piero <lewdovico@gnuweeb.org>
2024-06-27 03:01:31 +09:00
Nikolay Korotkiy
35a1ac9244
Merge pull request #320563 from sikmir/paho-mqtt-cpp
paho-mqtt-cpp: 1.3.2 → 1.4.0
2024-06-26 21:58:07 +04:00
Gutyina Gergő
a0b3e63b7d
n8n: add maintainer gepbird 2024-06-26 19:49:06 +02:00
Gutyina Gergő
31a1841a53
n8n: 1.9.3 -> 1.46.0, repackage with pnpm.fetchDeps 2024-06-26 19:48:57 +02:00
Sandro
49cc34e046
Merge pull request #308431 from Tochiaha/eyewitness
eyewitness: init at 20230525.1
2024-06-26 19:37:26 +02:00
Fabian Affolter
f169a20c49
Merge pull request #322527 from r-ryantm/auto-update/cvemap
cvemap: 0.0.6 -> 0.0.7
2024-06-26 19:26:39 +02:00
Fabian Affolter
eac99f5808
Merge pull request #322542 from r-ryantm/auto-update/poutine
poutine: 0.11.0 -> 0.12.0
2024-06-26 19:26:08 +02:00
Thiago Kenji Okada
d5c7eb2979
Merge pull request #322429 from thiagokokada/rtorrent-bump
rtorrent: 0.9.8+date=2022-06-20 -> 0.9.8-unstable-2023-03-16; libtorrent: 0.13.8+date=2021-08-07 -> unstable-2023-03-16
2024-06-26 18:15:56 +01:00
R. Ryantm
f4c6ac3b3c powerjoular: 0.7.3 -> 1.0.0 2024-06-26 17:04:28 +00:00
R. Ryantm
5ca35d5ef7 pinact: 0.2.0 -> 0.2.1 2024-06-26 17:03:38 +00:00
R. Ryantm
6a22adea09 codux: 15.29.0 -> 15.29.1 2024-06-26 16:22:59 +00:00
Nikolay Korotkiy
ad4d0d761a
paho-mqtt-cpp: migrate to by-name 2024-06-26 20:20:49 +04:00
nixpkgs-merge-bot[bot]
a34b46771f
Merge pull request #321863 from r-ryantm/auto-update/wlx-overlay-s
wlx-overlay-s: 0.4.1 -> 0.4.2
2024-06-26 16:20:42 +00:00
R. Ryantm
d978d2d57b git-instafix: 0.2.4 -> 0.2.5 2024-06-26 16:12:14 +00:00
R. Ryantm
f74f819ce1 clipcat: 0.18.0 -> 0.18.1 2024-06-26 16:00:32 +00:00
R. Ryantm
163ef81abd cue: 0.9.1 -> 0.9.2 2024-06-26 15:57:48 +00:00
Bogdan Burlacu
bbe8b15088
boilr: init at 1.9.4 2024-06-26 17:07:58 +02:00
r-vdp
df2ebdb07a
wstunnel: 9.7.1 -> 9.7.2
https://github.com/erebe/wstunnel/releases/tag/v9.7.2
2024-06-26 17:03:34 +02:00
Anderson Torres
b6ca975940 dosbox-staging: refactor
- reorder lists ASCIIbetically
- split outputs
- add tests and updateScript
2024-06-26 11:44:03 -03:00
Thiago Kenji Okada
ba42623fd5 rtorrent: use multiple outputs, update documentation 2024-06-26 11:06:04 -03:00
Jörg Thalheim
528d851b47
Merge pull request #322610 from Mic92/nix-unit
nix-unit: 2.18.0 -> 2.23.0
2024-06-26 15:59:23 +02:00
Jörg Thalheim
8589a96244 nix-unit: 2.18.0 -> 2.23.0 2024-06-26 15:48:11 +02:00
nixpkgs-merge-bot[bot]
1c26de05ec
Merge pull request #322513 from r-ryantm/auto-update/syft
syft: 1.7.0 -> 1.8.0
2024-06-26 13:08:47 +00:00
nixpkgs-merge-bot[bot]
a5ecc7dbec
Merge pull request #315488 from r-ryantm/auto-update/grype
grype: 0.79.0 -> 0.79.1
2024-06-26 13:07:51 +00:00
Weijia Wang
f7bde66030
Merge pull request #322564 from pyrox0/dotenv-cli-init
dotenv-cli: init
2024-06-26 15:04:29 +02:00
R. Ryantm
77f304adad codeberg-cli: 0.4.0 -> 0.4.2 2024-06-26 12:52:09 +00:00
R. Ryantm
83df76b099 proton-pass: 1.17.5 -> 1.18.0 2024-06-26 12:26:25 +00:00
éclairevoyant
41eba2dd4f
Merge pull request #322474 from anas-contribs/rustmission
rustmission: init at 0.3.3
2024-06-26 12:02:31 +00:00
Weijia Wang
af5959b894
Merge pull request #322412 from jwijenbergh/update-eduvpn-common
libeduvpn-common: 2.0.1 -> 2.0.2
2024-06-26 12:41:46 +02:00
Weijia Wang
d8e757dee6
Merge pull request #322555 from r-ryantm/auto-update/spla
spla: 1.6.0 -> 1.6.1
2024-06-26 12:40:47 +02:00
Weijia Wang
dfe476b1a5
Merge pull request #322504 from pyrox0/auto-changelog-init
auto-changelog: move out of node-packages
2024-06-26 12:37:31 +02:00
Weijia Wang
ad24b41e45
Merge pull request #322561 from pyrox0/diagnostic-langserver-init
diagnostic-languageserver: remove from node-packages
2024-06-26 12:36:28 +02:00
Weijia Wang
a2fb5e8ffa
Merge pull request #322570 from pyrox0/get-graphql-schema-init
get-graphql-schema: Move out of nodePackages
2024-06-26 12:34:35 +02:00
Weijia Wang
4fe022bf30
Merge pull request #322584 from pyrox0/gramma-init
gramma: remove from nodePackages
2024-06-26 12:33:08 +02:00
Weijia Wang
04720c01b0
Merge pull request #322580 from pyrox0/nodepackages-drop-git-standup
nodePackages.{git-standup, pnpm}: Remove from nodePackages
2024-06-26 12:28:22 +02:00
Weijia Wang
c414599dfa
Merge pull request #321530 from amy-keibler/enable-licensure-mac-build
licensure: enable darwin builds
2024-06-26 12:18:30 +02:00
R. Ryantm
5c3e12dcd7 quarkus: 3.11.2 -> 3.11.3 2024-06-26 09:53:18 +00:00
R. Ryantm
39fd56c3ce limine: 7.7.2 -> 7.8.0 2024-06-26 09:47:57 +00:00
Weijia Wang
f4bd45f2ca modrinth-app-unwrapped: replace nodePackages.pnpm with pnpm_8 2024-06-26 11:41:24 +02:00
R. Ryantm
d0df3dcc3a grype: 0.79.0 -> 0.79.1 2024-06-26 09:25:49 +00:00
vigress8
14e55ea612 pegtl: init at 3.2.7 2024-06-26 13:22:00 +04:00
R. Ryantm
da9b2bda45 zpaqfranz: 59.8 -> 59.9 2024-06-26 09:04:29 +00:00
Azat Bahawi
cbc840c071
Merge pull request #322454 from r-ryantm/auto-update/werf
werf: 2.6.1 -> 2.6.2
2024-06-26 08:29:54 +00:00
Pyrox
00f9680427
gramma: remove from nodePackages 2024-06-26 02:18:26 -04:00
Gaétan Lepage
c4f0f78812
Merge pull request #322515 from r-ryantm/auto-update/uv
uv: 0.2.13 -> 0.2.15
2024-06-26 07:52:39 +02:00
Masum Reza
b084263625
Merge pull request #247713 from klchen0112/tidgi
tidgi: init at 0.9.6
2024-06-26 10:25:10 +05:30
Pyrox
41a2be1c25
diagnostic-languageserver: remove from node-packages 2024-06-26 00:52:20 -04:00
Pyrox
61409956c7
dotenv-cli: init
Removes the package from node-packages and adds to pkgs/by-name
2024-06-26 00:51:16 -04:00
Pyrox
6954a8acb9
auto-changelog: move out of node-packages 2024-06-26 00:40:10 -04:00
Pyrox
590bc144c2
get-graphql-schema: Move out of nodePackages 2024-06-26 00:39:39 -04:00
Masum Reza
267d115a04
Merge pull request #322414 from JohnRTitor/hyprland
hyprland: 0.41.1 -> 0.41.2; hyprutils: 0.1.4 -> 0.1.5; hyprlandPlugins: 0.41.1 -> 0.41.2
2024-06-26 08:37:51 +05:30
R. Ryantm
573dd0b82d wideriver: 1.1.0 -> 1.2.0 2024-06-26 03:03:43 +00:00
R. Ryantm
4b0f5b9580 spla: 1.6.0 -> 1.6.1 2024-06-26 02:45:18 +00:00
Ben Siraphob
be761d36c1
Merge pull request #322477 from DieracDelta/jr/nix-btm
nix-btm: init at 0.2.0
2024-06-26 08:48:47 +07:00
R. Ryantm
f891e7eaa6 poutine: 0.11.0 -> 0.12.0 2024-06-26 01:39:17 +00:00
R. Ryantm
29dcf702b1 hugo: 0.127.0 -> 0.128.0 2024-06-26 01:11:49 +00:00
nixpkgs-merge-bot[bot]
6a0926dd33
Merge pull request #322516 from r-ryantm/auto-update/walker
walker: 0.0.71 -> 0.0.72
2024-06-26 01:04:01 +00:00
R. Ryantm
29398d33b7 cvemap: 0.0.6 -> 0.0.7 2024-06-26 00:37:03 +00:00
Someone Serge
7d667a0996 nix-required-mounts: refactor: drop unused arguments 2024-06-26 00:35:45 +00:00
Someone Serge
ebeb6b9d1d nix-required-mounts: nixfmt 2024-06-26 00:35:45 +00:00
Someone Serge
ff430d1699 nix-required-mounts: cuda: /dev/video* may not exist and aren't relevant 2024-06-26 00:35:45 +00:00
Someone Serge
927b15ed6d nixos/nix-required-mounts: allow passing extra arguments to the hook 2024-06-26 00:35:44 +00:00
Someone Serge
6a6b6ac359 nix-required-mounts: print -> logging 2024-06-26 00:35:44 +00:00
Someone Serge
61001a31c3 nix-required-mounts: enforce that host paths exist 2024-06-26 00:35:44 +00:00
Someone Serge
dd70727622 nixos/nix-required-mounts: mount the runtime closures 2024-06-26 00:35:44 +00:00
Someone Serge
075dd8b536 nix-required-mounts: allow overriding the rendered config 2024-06-26 00:35:44 +00:00
Someone Serge
55f54cc2c3 nix-required-mounts: restore (optional) symlink support 2024-06-26 00:35:44 +00:00
Someone Serge
3cf5bcfe49 nix-required-mounts: restore the followSymlinks option
This way pkgs.nix-required-mounts is "correct" even before
we override it in the NixOS module
2024-06-26 00:35:44 +00:00
Someone Serge
5560f6a514 nix-required-mounts: guest and host paths may differ 2024-06-26 00:35:43 +00:00
Someone Serge
7418e4fefd programs.nix-required-mounts: presets.cuda -> nvidia-gpu
This hopefully clarifies that the preset configures the hook to expose
"nvidia devices", which includse both the userspace driver and the
device nodes.

The derivations  still declare requiredSystemFeatures = [ "cuda" ] to
explicitly indicate they need to use the CUDA functionality and expect a
libcuda.so and a CUDA-capable device. Ideally, we'd also include the
specific CUDA architectures (sm_86, etc) in feature names.

Derivations that use a co-processor but do not care about the vendor or
even the particular interface may ask for the more generic "opengl",
"vulkan", or "gpu" features. It is then responsibility of the host
declaring the support for this feature to ensure the drivers and
hardware are appropriately set up.
2024-06-26 00:35:43 +00:00
Someone Serge
6a0f2aedc1 nix-required-mounts: fix: add missing metadata 2024-06-26 00:35:43 +00:00
Someone Serge
3a0d777486 nix-required-mounts: link the issue about unavailable .drvs 2024-06-26 00:35:43 +00:00
Someone Serge
3d84ab0b09 nix-required-mounts: expose the VM test in passthru 2024-06-26 00:35:43 +00:00
Someone Serge
50d4382114 programs.nix-required-mounts: inherit defaults from the package 2024-06-26 00:35:43 +00:00
Someone Serge
6662b09941 nix-required-mounts: handle __structuredAttrs 2024-06-26 00:35:43 +00:00
Someone Serge
6859a2dabc nix-required-mounts: use wrappers instead of statically embedding config into the script 2024-06-26 00:35:42 +00:00
Someone Serge
b422dafc89 nix-required-mounts: init 2024-06-26 00:35:42 +00:00
R. Ryantm
e8f559ab64 c2patool: 0.9.3 -> 0.9.4 2024-06-26 00:29:10 +00:00
Justin Restivo
5377ecc7a7 nix-btm: init at 0.2.0 2024-06-25 20:07:39 -04:00
R. Ryantm
64c7cf7c3e walker: 0.0.71 -> 0.0.72 2024-06-25 23:34:55 +00:00
R. Ryantm
01de659c3c uv: 0.2.13 -> 0.2.15 2024-06-25 23:29:17 +00:00
R. Ryantm
09e0c8c234 syft: 1.7.0 -> 1.8.0 2024-06-25 23:21:44 +00:00
Nick Cao
6e3a080d51
Merge pull request #322460 from r-ryantm/auto-update/crunchy-cli
crunchy-cli: 3.6.6 -> 3.6.7
2024-06-25 19:16:54 -04:00
Sandro
8293185863
Merge pull request #319822 from marijanp/add-cinzel
cinzel: init at 0-unstable-2020-07-22
2024-06-26 01:09:42 +02:00
Sandro
955f58d9d9
Merge pull request #307031 from MDM23/update-surrealist
surrealist: 1.11.7 -> 2.0.6
2024-06-26 01:08:47 +02:00
Sandro
9d4de0f96e
Merge pull request #309331 from Yarny0/dtv-scan-tables-update
dtv-scan-tables: update and migrate to by-name and finalAttrs
2024-06-26 01:06:53 +02:00
R. Ryantm
537f976d17 fzf-make: 0.34.0 -> 0.35.0 2024-06-25 23:01:08 +00:00
Sandro
339d32d9a7
Merge pull request #318440 from uninsane/pr-sysvol-init
syshud: init at 0-unstable-2024-06-20
2024-06-26 00:55:05 +02:00
Sandro
a5d8db4258
Merge pull request #313821 from arthsmn/lime3ds
lime3ds: init at 2114
2024-06-26 00:53:29 +02:00
Weijia Wang
d27ca203e5
Merge pull request #319987 from r-ryantm/auto-update/anytype
anytype: 0.40.9 -> 0.41.1
2024-06-26 00:46:47 +02:00
Sandro
d2076f15a6
Merge pull request #300749 from zebreus/init-photini
photini: init at 2024.2.1
2024-06-26 00:43:23 +02:00
Weijia Wang
56db90ee7b
Merge pull request #320176 from r-ryantm/auto-update/xlights
xlights: 2024.10 -> 2024.11
2024-06-26 00:43:12 +02:00
Weijia Wang
1dffcb5db1
Merge pull request #320398 from r-ryantm/auto-update/opencomposite
opencomposite: 0-unstable-2024-06-01 -> 0-unstable-2024-06-12
2024-06-26 00:36:41 +02:00
Weijia Wang
630d115362
Merge pull request #320254 from r-ryantm/auto-update/livekit
livekit: 1.6.1 -> 1.6.2
2024-06-26 00:32:44 +02:00
Sandro
943264ee9c
Merge pull request #266558 from getchoo/pkgs/clippy-sarif/init
clippy-sarif: init at 0.4.2
2024-06-26 00:31:44 +02:00
Sandro
f03f0ded7d
Merge pull request #311949 from luftmensch-luftmensch/cups-brother-mfcl2800dw_4.1.0-1
cups-brother-mfcl2800dw: init at 4.1.0-1
2024-06-26 00:31:06 +02:00
Weijia Wang
c036ce38d5
Merge pull request #320483 from r-ryantm/auto-update/mystmd
mystmd: 1.2.5 -> 1.2.9
2024-06-26 00:29:22 +02:00
Weijia Wang
9bbab44d18
Merge pull request #320665 from r-ryantm/auto-update/e1s
e1s: 1.0.37 -> 1.0.38
2024-06-26 00:24:21 +02:00
Weijia Wang
6155ccc546
Merge pull request #322351 from r-ryantm/auto-update/graphite-cli
graphite-cli: 1.3.8 -> 1.3.9
2024-06-26 00:18:12 +02:00
Weijia Wang
1b21e7af7f
Merge pull request #320842 from r-ryantm/auto-update/clash-verge-rev
clash-verge-rev: 1.6.5 -> 1.6.6
2024-06-26 00:09:39 +02:00
Ryan Hendrickson
b583c887a1 babeltrace: use allowedVersions in updateScript 2024-06-25 17:45:56 -04:00
Sandro
406f733cab
Merge pull request #308588 from mi-ael/init-openvas-smb
openvas-smb: init at 22.5.6
2024-06-25 23:26:59 +02:00
Sandro
ec13fea4b7
Merge pull request #298407 from gepbird/stylelint-lsp-init
stylelint-lsp: init at 2.0.0
2024-06-25 23:22:14 +02:00
Nick Cao
6dca5c221b
Merge pull request #322420 from r-ryantm/auto-update/frankenphp
frankenphp: 1.2.0 -> 1.2.1
2024-06-25 16:58:48 -04:00
Nick Cao
b9c635dc38
Merge pull request #322389 from r-ryantm/auto-update/kor
kor: 0.5.0 -> 0.5.1
2024-06-25 16:52:22 -04:00
Nick Cao
e22ab49d1c
Merge pull request #322314 from r-ryantm/auto-update/tdnf
tdnf: 3.5.6 -> 3.5.7
2024-06-25 16:51:15 -04:00
0x61nas
d9cea410c2
rustmission: init at 0.3.3 2024-06-25 23:50:24 +03:00
Nick Cao
9f09bca72c
Merge pull request #322345 from r-vdp/master
wstunnel: 9.7.0 -> 9.7.1
2024-06-25 16:50:11 -04:00
Masum Reza
42bd9223f5
Merge pull request #311935 from clebs/wideriver
wideriver: init at 1.1.0
2024-06-26 02:07:25 +05:30
Masum Reza
c50429a939
Merge pull request #322483 from Artturin/bcachefscross
bcachefs-tools: fix cross compilation of aarch64-linux
2024-06-26 02:01:03 +05:30
lassulus
fe3909bcc0
Merge pull request #319134 from friedow/pkgs/@vue/language-server
vue-language-server: init at 2.0.21
2024-06-25 22:27:03 +02:00
Pavel Sobolev
f6bed958b8
mesonlsp: init at 4.2.2 2024-06-25 23:08:13 +03:00
John Titor
e60665293a
hyprland, hyprlandPlugins: add johnrtitor as maintainer
I am willing to merge and review PRs of hyprland related packages
2024-06-26 01:23:50 +05:30
Artturin
4b0b8ae5c3 bcachefs-tools: Fix cross
The substitute would be good to transfer upstream but I don't know of a
way to do it in the makefile
2024-06-25 22:39:23 +03:00
R. Ryantm
6e7d689716 openvas-scanner: 23.4.1 -> 23.5.0 2024-06-25 19:25:46 +00:00
Sandro
1813936aff
Merge pull request #272895 from xanderio/wg-access-server-0.10.1
wg-access-server: init at 0.12.1
2024-06-25 21:21:19 +02:00
Thiago Kenji Okada
a8a382d77c libtorrent: remove nested usage of with 2024-06-25 16:18:06 -03:00
Thiago Kenji Okada
273ed5610c rtorrent: remove nested usage of with 2024-06-25 16:17:25 -03:00
lassulus
7ded518bde
Merge pull request #315075 from arikgrahl/scip-go
scip-go: init at 0.1.14
2024-06-25 20:44:07 +02:00
lassulus
a684053194
Merge pull request #297056 from arikgrahl/ingress2gateway
ingress2gateway: init at 0.2.0
2024-06-25 20:40:10 +02:00
lassulus
127aa188d7
Merge pull request #191191 from arikgrahl/css-checker
css-checker: init at 0.4.1
2024-06-25 20:37:43 +02:00
Masum Reza
f35da175e1
Merge pull request #317242 from amozeo/pkgs/antimatter-dimensions/init
antimatter-dimensions: init at 0-unstable-2024-05-11
2024-06-25 23:56:09 +05:30
Fabian Affolter
7d8a8baff6
Merge pull request #322452 from r-ryantm/auto-update/nuclei-templates
nuclei-templates: 9.8.9 -> 9.9.0
2024-06-25 20:03:26 +02:00
h7x4
3dcdd85492
Merge pull request #322187 from danielalvsaaker/azurite
azurite: init at 3.31.0
2024-06-25 19:26:13 +02:00
nixpkgs-merge-bot[bot]
e52bfa0d25
Merge pull request #322391 from r-ryantm/auto-update/flarectl
flarectl: 0.97.0 -> 0.98.0
2024-06-25 17:19:00 +00:00
nixpkgs-merge-bot[bot]
b9248d440c
Merge pull request #322449 from r-ryantm/auto-update/nrr
nrr: 0.9.2 -> 0.9.3
2024-06-25 17:15:35 +00:00
R. Ryantm
a890170ea4 crunchy-cli: 3.6.6 -> 3.6.7 2024-06-25 16:58:47 +00:00
R. Ryantm
0a810aaaaf werf: 2.6.1 -> 2.6.2 2024-06-25 16:32:00 +00:00
R. Ryantm
a958599307 nuclei-templates: 9.8.9 -> 9.9.0 2024-06-25 16:29:00 +00:00
R. Ryantm
36e4bfa3e0 nrr: 0.9.2 -> 0.9.3 2024-06-25 16:14:12 +00:00
Wroclaw
3cf2c9a018 antimatter-dimensions: init at 0-nstable-2024-05-11 2024-06-25 18:09:13 +02:00
⛧-440729 [sophie]
643f47c8ed
millipixels: fix for libtiff >= 4.5.1 2024-06-25 17:11:56 +02:00
Julien Malka
9d1a59b2e2
Merge pull request #322386 from katexochen/jonringer/rm
treewide: remove jonringer as package maintainer and code owner
2024-06-25 17:04:27 +02:00
R. Ryantm
081d3f6988 protonmail-desktop: 1.0.3 -> 1.0.4 2024-06-25 14:54:35 +00:00
Thiago Kenji Okada
2293f663f8 rtorrent: move to pkgs/by-name 2024-06-25 11:46:20 -03:00
Thiago Kenji Okada
694f564459 libtorrent: add thiagokokada as maintainer 2024-06-25 11:35:02 -03:00
Thiago Kenji Okada
5bcb428248 libtorrent: 0.13.8+date=2021-08-07 -> unstable-2023-03-16 2024-06-25 11:35:02 -03:00
Thiago Kenji Okada
92f373e4a3 libtorrent: add updateScript 2024-06-25 11:35:02 -03:00
Thiago Kenji Okada
c85eb67ec1 libtorrent: move to pkgs/by-name 2024-06-25 11:35:01 -03:00
Pol Dellaiera
6c030876aa
Merge pull request #322427 from GaetanLepage/typstyle
typstyle: 0.11.27 -> 0.11.28
2024-06-25 16:31:12 +02:00
Weijia Wang
3f8391d04c
Merge pull request #321580 from gador/radicle-httpd
radicle-httpd: init at 0.11.0
2024-06-25 16:25:06 +02:00
Weijia Wang
a38661ea6e
Merge pull request #322076 from r-ryantm/auto-update/ols
ols: 0-unstable-2024-06-13 -> 0-unstable-2024-06-18
2024-06-25 16:21:35 +02:00
Weijia Wang
fcd4d568d5
Merge pull request #322268 from uninsane/pr-py-imports-check
treewide: fix typos of `pythonImportsCheck`
2024-06-25 16:20:32 +02:00
Weijia Wang
df97293a6d
Merge pull request #321773 from r-ryantm/auto-update/knossosnet
knossosnet: 1.1.0 -> 1.2.0
2024-06-25 16:19:31 +02:00
Gaetan Lepage
aa601293e4 typstyle: 0.11.27 -> 0.11.28
Diff: https://github.com/Enter-tainer/typstyle/compare/refs/tags/v0.11.27...v0.11.28

Changelog: https://github.com/Enter-tainer/typstyle/blob/refs/tags/v0.11.28/CHANGELOG.md
2024-06-25 16:19:14 +02:00
Weijia Wang
7516674a92
Merge pull request #322134 from luftmensch-luftmensch/sfwbar_1.0_beta15
sfwbar: 1.0_beta14 -> 1.0_beta15
2024-06-25 16:19:11 +02:00
Weijia Wang
3ee40fd613
Merge pull request #320100 from pyrox0/papers-46
papers: 45.0-unstable-2024-03-27 -> 46.2
2024-06-25 16:08:12 +02:00
Weijia Wang
b099e37826
Merge pull request #302269 from Tochiaha/thc-secure-delete
thc-secure-delete: init at 3.1.1
2024-06-25 16:07:18 +02:00
klchen0112
b47308d815 tidgi: init at 0.9.6 2024-06-25 22:04:42 +08:00
illfygli
ead3b767e1
maintainers: remove alva (#322371)
* remove myself from maintainer-list.nix

* remove myself from oils-for-unix package

* remove myself from oil package
2024-06-25 16:00:55 +02:00
R. Ryantm
47eed92d68 frankenphp: 1.2.0 -> 1.2.1 2024-06-25 13:40:34 +00:00
John Titor
25cb8f71c4
hyprland: 0.41.1 -> 0.41.2 2024-06-25 19:04:58 +05:30
John Titor
454c084fa1
hyprutils: 0.1.4 -> 0.1.5 2024-06-25 19:04:58 +05:30
Jeroen Wijenbergh
210d7af01e
libeduvpn-common: 2.0.1 -> 2.0.2 2024-06-25 14:58:13 +02:00
nixpkgs-merge-bot[bot]
f3aa9a6663
Merge pull request #322383 from r-ryantm/auto-update/koboldcpp
koboldcpp: 1.67 -> 1.68
2024-06-25 12:32:08 +00:00
Masum Reza
5da2516724
Merge pull request #321668 from theobori/master
supermariowar: init at 2.0-unstable-2024-06-22
2024-06-25 17:57:34 +05:30
lassulus
859d745392
Merge pull request #322370 from a-kenji/init/status-im
status-im: init at 2.29.0
2024-06-25 14:23:20 +02:00
nixpkgs-merge-bot[bot]
9c513fc6fb
Merge pull request #322242 from r-ryantm/auto-update/bilibili
bilibili: 1.13.5-2 -> 1.13.6-2
2024-06-25 12:13:56 +00:00
0x4A6F
467d625ad1
Merge pull request #322180 from helsinki-systems/upd/rustdesk-flutter
rustdesk-flutter: 1.2.3-2 -> 1.2.6
2024-06-25 14:07:13 +02:00
Someone
35551ddea8
Merge pull request #322070 from jeremyschlatter/cmakeCudaArchitecturesString
treewide: use cmakeCudaArchitecturesString
2024-06-25 11:59:19 +00:00
R. Ryantm
2673432cb8 flarectl: 0.97.0 -> 0.98.0 2024-06-25 11:40:00 +00:00
R. Ryantm
db6133f1f3 kor: 0.5.0 -> 0.5.1 2024-06-25 11:38:22 +00:00
R. Ryantm
421a15f6e0 koboldcpp: 1.67 -> 1.68 2024-06-25 11:20:15 +00:00
Théo Bori
15582e9b5f
supermariowar: init at 2.0-unstable-2024-06-22 2024-06-25 13:09:18 +02:00
Paul Meyer
736555406c
Merge pull request #318718 from msanft/notary/0.6.1-unstable
notary: 0.6.1 -> 0.6.1-unstable-2024-04-16
2024-06-25 13:01:12 +02:00
Alexander Linder
2592654f75 televido: 0.3.0 -> 0.4.0 2024-06-25 12:55:17 +02:00
éclairevoyant
1a65ed93c0
Merge pull request #322273 from NotAShelf/serpl
serpl: init at 0.1.26
2024-06-25 10:52:34 +00:00
a-kenji
1f8187378d status-im: init at 2.29.0 2024-06-25 12:23:44 +02:00
iivusly
5988195a31
xld: init at 20240511 2024-06-25 03:07:12 -07:00
Maciej Krüger
02b4430d82
Merge pull request #319274 from Melkor333/oils-for-unix-0220
oils-for-unix: 0.21.0 -> 0.22.0
2024-06-25 11:44:44 +02:00
Sandro
49a0868afb
Merge pull request #316309 from dpc/24-05-31-fedimintd-pkg 2024-06-25 11:32:29 +02:00
R. Ryantm
4125560427 graphite-cli: 1.3.8 -> 1.3.9 2024-06-25 09:25:23 +00:00
Sandro
c9387e6151
Merge pull request #320522 from CherryKitten/init-openpgp-ca 2024-06-25 11:14:15 +02:00
Alexander Sieg
369cfec06d
nixos/wg-access-server: init module 2024-06-25 10:59:30 +02:00
r-vdp
17c2cf3896
wstunnel: 9.7.0 -> 9.7.1
https://github.com/erebe/wstunnel/releases/tag/v9.7.1
2024-06-25 10:33:56 +02:00
Paul Meyer
fbe8538aa1 treewide: remove jonringer as package maintainer
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-06-25 09:16:56 +02:00
Fabián Heredia Montiel
0026fe33ef
Merge pull request #321967 from r-ryantm/auto-update/wiremock
wiremock: 3.6.0 -> 3.7.0
2024-06-25 00:54:56 -06:00
Fabián Heredia Montiel
95323b9db6
Merge pull request #322116 from r-ryantm/auto-update/bombsquad
bombsquad: 1.7.35 -> 1.7.36
2024-06-25 00:53:55 -06:00
tahanonu
597b156b01 thc-secure-delete: init at 3.1.1 2024-06-25 07:49:06 +01:00
Moritz Sanft
1b6089e945
notary: 0.6.1 -> 0.6.1-unstable-2024-04-16 2024-06-25 08:38:42 +02:00
Michele Guerini Rocco
655279779a
Merge pull request #322252 from rnhmjoj/pr-pdns-recursor
pdns-recursor: 5.0.4 -> 5.0.6
2024-06-25 08:28:03 +02:00
éclairevoyant
21aa52108f
Merge pull request #316993 from alyraffauf/webcord-add-commandLineArgs
webcord: pass --enable-wayland-ime to electron under wayland session with NIXOS_OZONE_WL=1
2024-06-25 06:06:17 +00:00
danielalvsaaker
8eed63c05e azurite: init at 3.31.0 2024-06-25 07:52:34 +02:00
Masum Reza
5a4d916a63
Merge pull request #321075 from Aleksanaa/emote
emote: 4.0.1 -> 4.1.0
2024-06-25 11:08:02 +05:30
R. Ryantm
e83bd42ee1 tdnf: 3.5.6 -> 3.5.7 2024-06-25 02:50:19 +00:00
Nick Cao
6c146dc71e
Merge pull request #322263 from DontEatOreo/update-arc-browser
arc-browser: 1.47.1-50893 -> 1.48.2-51225
2024-06-24 21:07:36 -04:00
éclairevoyant
a4853d2129
Merge pull request #316835 from eclairevoyant/fix-chrysalis-script
chrysalis: mark update script executable, fix source provenance, and other cleanup
2024-06-24 22:30:27 +00:00
NotAShelf
dc1f289d07
serpl: init at 0.1.26 2024-06-25 00:33:28 +03:00
Colin
8c74b73720 treewide: fix typos of pythonImportsCheck 2024-06-24 21:15:57 +00:00
Nick Cao
525a63b1cd
Merge pull request #322175 from r-ryantm/auto-update/kitex
kitex: 0.10.0 -> 0.10.1
2024-06-24 16:56:06 -04:00
Nick Cao
5984979c64
Merge pull request #322176 from r-ryantm/auto-update/karmor
karmor: 1.2.2 -> 1.2.3
2024-06-24 16:55:47 -04:00
Nick Cao
3fac0ae6e6
Merge pull request #322150 from r-ryantm/auto-update/malwoverview
malwoverview: 5.4.4 -> 5.4.5
2024-06-24 16:52:18 -04:00
DontEatOreo
2c1c3398d2
arc-browser: 1.47.1-50893 -> 1.48.2-51225
Changelog: https://arc.net/e/93294671-D097-4AD5-97EA-370F269583BE
2024-06-24 23:51:10 +03:00
Nick Cao
9c29637769
Merge pull request #322088 from r-ryantm/auto-update/gitu
gitu: 0.21.0 -> 0.21.1
2024-06-24 16:49:29 -04:00
Nick Cao
6b1d097048
Merge pull request #322090 from r-ryantm/auto-update/lazysql
lazysql: 0.1.8 -> 0.2.1
2024-06-24 16:48:38 -04:00
Nick Cao
5e61053b65
Merge pull request #322105 from r-ryantm/auto-update/centrifugo
centrifugo: 5.4.0 -> 5.4.1
2024-06-24 16:45:48 -04:00
Ben Lorenz
6a1ada4d04 wlr-layout-ui: 1.6.11 -> 1.6.14 2024-06-24 22:27:31 +02:00
Nikolay Korotkiy
53dc4782c3
Merge pull request #322133 from r-ryantm/auto-update/flashmq
flashmq: 1.15.1 -> 1.15.2
2024-06-25 00:08:33 +04:00
Ryan Hendrickson
69c3647fe2
Merge pull request #277811 from herberteuler/fix/yourkit
Add YourKit-JavaProfiler
2024-06-24 16:04:59 -04:00
rnhmjoj
ccfa6066a0
pdns-recursor: 5.0.4 -> 5.0.6 2024-06-24 21:57:33 +02:00
R. Ryantm
10680f39b7 bilibili: 1.13.5-2 -> 1.13.6-2 2024-06-24 19:07:15 +00:00
Alexander Sieg
28106064d7
wg-access-server: init at 0.12.1 2024-06-24 21:01:55 +02:00
CherryKitten
e23711c393
openpgp-ca: init at 0.13.1 2024-06-24 20:50:53 +02:00
Guanpeng Xu
47418c6b9b yourkit-java: 2024.3-b154 -> 2024.3-b157 2024-06-24 10:16:31 -07:00
h7x4
cf02fd7eac
Merge pull request #321521 from Panky-codes/add-vmctl
vmctl: init at v0.99-unstable-2024-05-14
2024-06-24 18:56:50 +02:00
Weijia Wang
56fba1e91d
papers: fix build on darwin 2024-06-24 12:48:12 -04:00
Pyrox
9515e2e098
papers: 45.0-unstable-2024-03-27 -> 46.2
See upstream changelog:
https://gitlab.gnome.org/GNOME/Incubator/papers/-/blob/main/NEWS
2024-06-24 12:48:12 -04:00
éclairevoyant
5cca28cafa
chrysalis: remove unneeded rec 2024-06-24 12:21:02 -04:00
éclairevoyant
77a8116270
chrysalis: fix meta.mainProgram 2024-06-24 12:21:02 -04:00
éclairevoyant
fb87f8a1d1
chrysalis: replace deprecated --replace with --replace-fail 2024-06-24 12:21:02 -04:00
éclairevoyant
c42401aae5
chrysalis: fix pname misuse 2024-06-24 12:21:02 -04:00
éclairevoyant
f3a3165277
chrysalis: remove meta = with lib; 2024-06-24 12:21:00 -04:00
éclairevoyant
44fad83afa
chrysalis: fix source provenance 2024-06-24 12:20:33 -04:00
éclairevoyant
2dee6a31cc
chrysalis: format with nixfmt-rfc-style 2024-06-24 12:20:33 -04:00
éclairevoyant
47daebc912
chrysalis: mark update script executable 2024-06-24 12:20:31 -04:00
h7x4
72a6ca037a
Merge pull request #321954 from GiggleSquid/pkgs-technitium-dns-server
technitium-dns-server: 12.1 -> 12.2.1
2024-06-24 18:00:30 +02:00
h7x4
cdb8cd124a
Merge pull request #322034 from r-ryantm/auto-update/tenv
tenv: 2.0.7 -> 2.1.8
2024-06-24 18:00:08 +02:00
Pankaj Raghav
afd9d60120 vmctl: init at v0.99-unstable-2024-05-14 2024-06-24 17:43:07 +02:00
nixpkgs-merge-bot[bot]
8ff3bf9e4d
Merge pull request #322130 from r-ryantm/auto-update/lefthook
lefthook: 1.6.16 -> 1.6.18
2024-06-24 14:58:20 +00:00
R. Ryantm
5e7ceec0bc renode-unstable: 1.15.1+20240615gitdd55f8ea4 -> 1.15.1+20240623git05720ced1 2024-06-24 14:55:24 +00:00
Pol Dellaiera
b20ba10e4c
Merge pull request #321761 from felschr/protoc-gen-prost
protoc-gen-tonic: 0.3.0 -> 0.4.0, protoc-gen-prost: 0.2.3 -> 0.3.1, protoc-gen-prost-serde: 0.2.3 -> 0.3.0, protoc-gen-prost-crate: 0.3.1 -> 0.4.0
2024-06-24 16:34:22 +02:00
éclairevoyant
398222724a
Merge pull request #321653 from Frontear/update-quickemu
quickemu: 4.9.4 -> 4.9.4-unstable-2024-05-28
2024-06-24 14:16:15 +00:00