Commit Graph

399 Commits

Author SHA1 Message Date
R. Ryantm
fb10e350ad renovate: 38.18.17 -> 38.27.0 2024-08-14 04:17:56 +00:00
Donovan Glover
962bf08e97
Merge pull request #333976 from r-ryantm/auto-update/remnote
remnote: 1.16.93 -> 1.16.96
2024-08-13 21:55:10 +00:00
Nick Cao
d02808f4be
Merge pull request #334310 from r-ryantm/auto-update/renode-dts2repl
renode-dts2repl: 0-unstable-2024-07-31 -> 0-unstable-2024-08-01
2024-08-13 15:48:00 -04:00
R. Ryantm
52b97c2a86 renode-dts2repl: 0-unstable-2024-07-31 -> 0-unstable-2024-08-01 2024-08-13 05:12:05 +00:00
7c6f434c
a9d40cea7d
Merge pull request #334167 from sinofp/fix-tkremind
remind: Fix $out expansion for tkremind
2024-08-13 00:19:37 +00:00
sinofp
a326e13ecd remind: Fix $out expansion for tkremind
In the last commit to remind, double quotes were replaced by single quotes.
This change disabled the parameter expansion for remind,
causing an error when starting tkremind:

Error in startup script: can't read "out": no such variable
    while executing
"set Remind "$out/bin/remind""
    (file "/nix/store/p2ha6a4ybw7m6cy8mindb15ay9129kfa-remind-05.00.02/bin/.tkremind-wrapped" line 216)

Reverting to double quotes allows Bash to correctly expand the $out parameter.
2024-08-12 16:05:39 +01:00
Joseph Stahl
aaba7b8370
recyclarr: use finalAttrs for buildDotnetModule 2024-08-11 23:18:31 -04:00
Joseph Stahl
18ebd72b85
recyclarr: move to pkgs/by-name 2024-08-11 21:23:33 -04:00
R. Ryantm
1dc7752f27 remnote: 1.16.93 -> 1.16.96 2024-08-11 19:19:49 +00:00
R. Ryantm
ca681365a6 renode-unstable: 1.15.1+20240801git19eb5fb22 -> 1.15.1+20240808git7a138330e 2024-08-10 07:09:45 +00:00
OTABI Tomoya
28d8a137ac
Merge pull request #332657 from r-ryantm/auto-update/renovate
renovate: 37.440.7 -> 38.18.17
2024-08-07 17:04:42 +09:00
Thiago Kenji Okada
06aa9d05cd
Merge pull request #332064 from otavio/renode-fix
renode: move to linux-dotnet build, renode-unstable: 1.15.1+20240627git66a08265a -> 1.15.1+20240801git19eb5fb22
2024-08-06 22:19:41 +01:00
Weijia Wang
60290304a2
Merge pull request #332086 from wegank/rectangle-bump
rectangle: 0.80 -> 0.81
2024-08-06 12:20:54 +02:00
R. Ryantm
cfa35aa521 renovate: 37.440.7 -> 38.18.17 2024-08-06 08:07:57 +00:00
Peder Bergebakken Sundt
462b96d2a1
Merge pull request #326243 from jcaesar/pr-13
treewide: skip generating shell completions using $out/bin/… when cross compiling
2024-08-06 08:15:56 +02:00
Otavio Salvador
20e15d1eac renode-unstable: 1.15.1+20240716gita55a3d050 -> 1.15.1+20240801git19eb5fb22
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2024-08-05 13:10:28 -03:00
Otavio Salvador
364796f33b renode: move to linux-dotnet build
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2024-08-05 13:09:58 -03:00
R. Ryantm
7a67dbe0a4 renode-dts2repl: 0-unstable-2024-07-10 -> 0-unstable-2024-07-31 2024-08-05 14:53:07 +00:00
Aleksana
026ab8618e
Merge pull request #328378 from r-ryantm/auto-update/renode-unstable
renode-unstable: 1.15.1+20240627git66a08265a -> 1.15.1+20240716gita55a3d050
2024-08-04 19:32:17 +08:00
Julius Michaelis
6a9beaf893 treewide: skip generating shell completions using $out/bin/… when cross compiling
This focuses on Rust packages, since the most commonly used argument
parser library (clap/structopt) makes the following pattern natural and
thus common:

  postInstall = ''
    installShellCompletion --cmd foo \
      --bash <($out/bin/foo completion bash) \
      …

This commit just guards those with

lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform)

splitting the string where unrelated actions are performed.
2024-08-04 10:50:48 +09:00
Weijia Wang
157e73803a rectangle: 0.80 -> 0.81 2024-08-03 23:54:02 +02:00
Weijia Wang
f45019f57b rectangle: move to pkgs/by-name, format 2024-08-03 23:53:19 +02:00
R. Ryantm
6b618f7371 remnote: 1.16.72 -> 1.16.93 2024-08-03 06:15:10 +00:00
tomberek
4f13b93a95
Merge pull request #330614 from bddvlpr/master
redocly: 1.18.0 -> 1.18.1
2024-08-02 01:37:53 -04:00
Sandro
f73ed21933
Merge pull request #330502 from TomaSajt/resticprofile
resticprofile: fix darwin build by disabling some additional tests
2024-08-01 23:21:30 +02:00
Nick Cao
0927a4acea
Merge pull request #330675 from r-ryantm/auto-update/regols
regols: 0.2.3 -> 0.2.4
2024-07-29 15:33:46 -04: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
Sandro
139855af78
Merge pull request #327424 from d-brasher/init-revolver 2024-07-29 01:36:35 +02:00
R. Ryantm
acb853e12e regols: 0.2.3 -> 0.2.4 2024-07-28 15:27:11 +00:00
Luna Simons
2203c6b5e3
redocly: 1.18.0 -> 1.18.1 2024-07-28 12:42:32 +02:00
K900
24076029d2 Merge remote-tracking branch 'origin/master' into staging-next 2024-07-28 01:04:35 +03:00
TomaSajt
559e9a7f9d
resticprofile: disable some additional tests 2024-07-27 22:32:11 +02:00
7c6f434c
dfbfa17eb1
Merge pull request #330300 from afh/update-modernize-remind
remind: 05.00.01 -> 05.00.02
2024-07-27 19:21:20 +00:00
Alexis Hildebrandt
9470e164c9 remind: modernize 2024-07-27 19:22:59 +02:00
R. Ryantm
076390a47e resticprofile: 0.27.0 -> 0.27.1 2024-07-27 15:44:04 +00:00
Bruno Bigras
674ab984b4
Merge pull request #306589 from TomaSajt/resticprofile
resticprofile: init at 0.27.0
2024-07-27 00:11:14 -04:00
Alexis Hildebrandt
a6996cbbeb remind: format using nixfmt 2024-07-27 01:50:11 +02:00
Alexis Hildebrandt
12b1282cf0 remind: migrate to pkgs/by-name 2024-07-27 01:41:32 +02:00
Nick Cao
f9578b5cd3
Merge pull request #330133 from r-ryantm/auto-update/release-plz
release-plz: 0.3.74 -> 0.3.79
2024-07-26 17:08:04 -04:00
R. Ryantm
b7b8b3a504 release-plz: 0.3.74 -> 0.3.79 2024-07-26 09:40:33 +00:00
Sigmanificient
6dd44107ac treewide: remove unused lib (and other) arguments 2024-07-26 11:18:09 +02:00
R. Ryantm
6ae5cdb0ea renovate: 37.431.7 -> 37.440.7 2024-07-25 09:46:02 +00:00
seth
c6baa3fbaf
resources: add updateScript 2024-07-24 03:26:33 -04:00
seth
dafbfa8c33
resources: 1.5.0 -> 1.5.1
Diff: https://github.com/nokyan/resources/compare/refs/tags/v1.5.0...v1.5.1

Changelog: https://github.com/nokyan/resources/releases/tag/1.5.1
2024-07-24 03:23:41 -04:00
d-brasher
51b146b238 revolver: init at 0.2.4-unstable-2020-09-30 2024-07-21 22:28:38 +02:00
R. Ryantm
108b524ea2 remnote: 1.16.59 -> 1.16.72 2024-07-21 09:04:23 +00:00
R. Ryantm
588188fefc renode-unstable: 1.15.1+20240627git66a08265a -> 1.15.1+20240716gita55a3d050 2024-07-19 08:11:27 +00:00
R. Ryantm
5146444aa8 regal: 0.23.1 -> 0.24.0 2024-07-17 06:05:54 +00:00
Matteo Pacini
e1770bd119
realm-studio: init at 15.2.1 (#325967)
Co-authored-by: Matteo Pacini <matteo@codecraft.it>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2024-07-16 14:23:52 +02:00
Weijia Wang
157858ffb9
Merge pull request #327482 from r-ryantm/auto-update/renovate
renovate: 37.424.3 -> 37.431.7
2024-07-16 13:40:44 +02:00
nixpkgs-merge-bot[bot]
7783833223
Merge pull request #327548 from r-ryantm/auto-update/redocly
redocly: 1.17.0 -> 1.18.0
2024-07-16 07:11:20 +00:00
R. Ryantm
d91cb30da5 redocly: 1.17.0 -> 1.18.0 2024-07-16 04:21:47 +00:00
Aaron Andersen
68e69a98a1
Merge pull request #325349 from felixsinger/pkgs/redmine/update
redmine: 5.1.2 -> 5.1.3
2024-07-15 19:29:06 -04:00
R. Ryantm
0613e47053 renovate: 37.424.3 -> 37.431.7 2024-07-15 21:11:06 +00:00
Felix Singer
cb8be2781e redmine: 5.1.2 -> 5.1.3
Signed-off-by: Felix Singer <felixsinger@posteo.net>
2024-07-15 21:39:45 +02:00
Weijia Wang
b4a15e0d15
Merge pull request #326461 from JamieMagee/retrospy-6.5
retrospy: 6.4.8 -> 6.5
2024-07-15 14:23:24 +02:00
Aleksana
8803c1412d
Merge pull request #327274 from r-ryantm/auto-update/reposilite
reposilite: 3.5.13 -> 3.5.14
2024-07-15 20:10:28 +08:00
R. Ryantm
0118b68af2 reposilite: 3.5.13 -> 3.5.14 2024-07-15 05:54:47 +00:00
Pyrox
0b8eaf081f
fetchCrate: sha256 -> hash
Should cause no rebuilds, as this is just updating attributes.
2024-07-14 13:48:13 -04:00
Sandro
44e14e0945
Merge pull request #324577 from linsui/jami
jami: 20240529.0 -> 20240627.0
2024-07-14 19:10:28 +02:00
Nick Cao
7947645a80
Merge pull request #327087 from r-ryantm/auto-update/renode-dts2repl
renode-dts2repl: 0-unstable-2024-07-02 -> 0-unstable-2024-07-10
2024-07-14 11:12:16 -04:00
R. Ryantm
f837ccac0e renode-dts2repl: 0-unstable-2024-07-02 -> 0-unstable-2024-07-10 2024-07-14 11:19:19 +00:00
Sigmanificient
512e8afdb9 treewide: remove unused occurence of stdenv (and other) arguments
format (will squash)
2024-07-14 04:32:56 +02:00
Anderson Torres
ad383c8ee5 revup: rework
- get rid of rec (at all costs!)
- passthru
  - updateScript
  - tests.version
2024-07-12 16:18:24 -03:00
Jamie Magee
e7ded0a5e0 retrospy: 6.4.8 -> 6.5 2024-07-11 21:54:59 -07:00
ocfox
76b5481df7
nixosTests.realm: init 2024-07-10 16:43:17 +02:00
ocfox
a595aba420
realm: init at 2.6.0
Co-authored-by: Nick Cao <nickcao@nichi.co>
2024-07-10 16:20:06 +02:00
Aleksana
9a7c10907d
Merge pull request #325636 from r-ryantm/auto-update/remnote
remnote: 1.16.55 -> 1.16.59
2024-07-10 18:01:18 +08:00
linsui
37a00568d9 restinio_0_6: remove 2024-07-09 20:55:15 +08:00
Michael Hoang
eb725313bc treewide: remove Enzime 2024-07-09 14:32:33 +10:00
R. Ryantm
cd1c78ad9e remnote: 1.16.55 -> 1.16.59 2024-07-08 20:03:37 +00:00
lassulus
bb0c931130
Merge pull request #323949 from jackyliu16/update-realvnc
realvnc-vnc-viewer: 7.5.1 -> 7.12.0 && move to by-name/
2024-07-08 13:34:36 +02:00
h7x4
7384b9abdc
treewide: set meta.changelog 2024-07-07 15:20:06 +02:00
Daniel Schaefer
d864ebc0c8
Merge pull request #324922 from r-ryantm/auto-update/revup
revup: 0.2.1 -> 0.3.0
2024-07-07 16:28:49 +08:00
Jörg Thalheim
bd0b680390
Merge pull request #325035 from NyCodeGHG/update-renovate
nix-update: 1.3.1 -> 1.4.0, renovate: 37.393.0 -> 37.424.3
2024-07-07 08:10:51 +02:00
Weijia Wang
abea8c5481
Merge pull request #323538 from r-ryantm/auto-update/renode-unstable
renode-unstable: 1.15.1+20240623git05720ced1 -> 1.15.1+20240627git66a08265a
2024-07-07 03:34:29 +02:00
Marie Ramlow
7a2b7dc310 renovate: 37.393.0 -> 37.424.3 2024-07-06 14:55:32 +02:00
Marie Ramlow
0512ee4df6 renovate: add passthru.updateScript 2024-07-06 14:53:23 +02:00
R. Ryantm
f75b31df88 revup: 0.2.1 -> 0.3.0 2024-07-05 23:32:42 +00:00
TomaSajt
9507e176ae
resticprofile: init at 0.27.0 2024-07-05 01:22:23 +02:00
github-actions[bot]
36cbae9ff0
Merge master into staging-next 2024-07-04 18:01:19 +00:00
Nick Cao
c77b18817d
Merge pull request #324508 from r-ryantm/auto-update/renode-dts2repl
renode-dts2repl: 0-unstable-2024-06-26 -> 0-unstable-2024-07-02
2024-07-04 13:55:38 -04:00
Masum Reza
6646e378ed
Merge pull request #324567 from chewblacka/update-remnote
remnote: 1.16.48 -> 1.16.55
2024-07-04 23:23:05 +05:30
Masum Reza
39a1c7c963
Merge pull request #320832 from Jamalam360/master
reposilite: init at 3.5.13
2024-07-04 19:53:26 +05:30
John Garcia
599d5ce0c5 remnote: 1.16.48 -> 1.16.55 2024-07-04 14:44:36 +01:00
John Garcia
0c1af79e5a remnote: move to pkgs/by-name 2024-07-04 14:40:36 +01:00
James (Jamalam)
58a9a97b34
reposilite: init at 3.5.13 2024-07-04 11:19:51 +01: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
25a18a4cbb renode-dts2repl: 0-unstable-2024-06-26 -> 0-unstable-2024-07-02 2024-07-04 08:03:56 +00:00
Nick Cao
fe88cea39d
Merge pull request #323505 from r-ryantm/auto-update/redlib
redlib: 0.34.0 -> 0.35.1
2024-07-03 19:52:56 -04:00
jackyliu16
e4da2fc836 realvnc-vnc-viewer: 7.5.1 -> 7.12.0 2024-07-03 23:22:10 +08:00
github-actions[bot]
e9d004b9bc
Merge master into staging-next 2024-07-02 06:01:12 +00:00
jackyliu16
9ab658e703 realvnc-vnc-viewer: move to by-name/ 2024-07-02 12:09:33 +08:00
R. Ryantm
68c2bda1c6 redocly: 1.15.0 -> 1.17.0 2024-07-02 02:08:43 +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
Markus Kowalewski
208ecffa37
Merge pull request #322551 from r-ryantm/auto-update/reactphysics3d
reactphysics3d: 0.10.0 -> 0.10.1
2024-06-30 13:09:18 +00:00
R. Ryantm
404e7d4b55 renode-unstable: 1.15.1+20240623git05720ced1 -> 1.15.1+20240627git66a08265a 2024-06-30 06:53:12 +00:00
R. Ryantm
3758f66c25 redlib: 0.34.0 -> 0.35.1 2024-06-30 01:17:43 +00:00
K900
bde999c03e Merge branch 'master' into staging-next 2024-06-29 10:13:13 +03:00
Nikolay Korotkiy
f8e8929e76
Merge pull request #323238 from r-ryantm/auto-update/redka
redka: 0.5.1 -> 0.5.2
2024-06-29 01:48:30 +04:00