Commit Graph

13231 Commits

Author SHA1 Message Date
R. Ryantm
e7d968cab2 rofi-file-browser: 1.3.0 -> 1.3.1 2022-02-07 18:58:20 -08:00
github-actions[bot]
335510eb84
Merge master into staging-next 2022-02-08 00:01:49 +00:00
zowoq
6958276347 Revert "Revert "hello: 2.10 -> 2.12" (#158328)"
This reverts commit 598c791f2c.
2022-02-08 08:54:18 +10:00
zowoq
ab07e12988 treewide: drop unnecessary go_1_17, buildGo117{Module,Package} 2022-02-08 08:09:33 +10:00
Jonathan Ringer
a52db119e1
qcad: fix src 2022-02-07 11:24:46 -08:00
Jonathan Ringer
ac5b189b0c
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
	pkgs/top-level/aliases.nix
2022-02-07 11:15:10 -08:00
Maciej Krüger
ccd9fb5b08
Merge pull request #158450 from jojosch/dbeaver-update 2022-02-07 19:10:27 +01:00
github-actions[bot]
9cdb39f965
Merge master into staging-next 2022-02-07 18:01:27 +00:00
Bobby Rong
b7335c2f9d
Merge pull request #157834 from lourkeur/update/p2pool
p2pool: 1.4 -> 1.6
2022-02-07 21:20:11 +08:00
github-actions[bot]
4e2cf99754
Merge master into staging-next 2022-02-07 12:01:12 +00:00
Sandro
0e0e00e71f
Merge pull request #158355 from Stunkymonkey/mediaelch-2.8.14 2022-02-07 11:34:41 +01:00
Felix Buehler
a0e5220535 mediaelch: 2.8.12 -> 2.8.14 2022-02-07 10:03:01 +01:00
Johannes Schleifenbaum
d9b2a0cf0e
dbeaver: 21.3.3 -> 21.3.4 2022-02-07 09:45:58 +01:00
Jonathan Ringer
46fd0afcb3
Merge remote-tracking branch 'origin/master' into staging-next
Conflicts:
	pkgs/development/python-modules/pysdl2/default.nix
	pkgs/top-level/aliases.nix
2022-02-06 18:36:59 -08:00
Ben Siraphob
d7554f0f28
Merge pull request #157565 from mweinelt/octoprint
octoprint: 1.7.2 -> 1.7.3
2022-02-06 21:38:50 +00:00
Ben Siraphob
b0e98a180f
Merge pull request #158246 from Ma27/zathura-overrides
zathura: improve overridability; set plugin dir through the environment
2022-02-06 20:30:54 +00:00
Ben Siraphob
735fe28fa5
Merge pull request #158376 from wrvsrx/master
taskwarrior-tui: 0.13.35 -> 0.18.5
2022-02-06 20:30:16 +00:00
Ben Siraphob
33489310eb
Merge pull request #158358 from c0bw3b/fix/homepages
A batch of homepage (and source) updates
2022-02-06 20:02:50 +00:00
wrvsrx
cc73f310fa taskwarrior-tui: 0.13.35 -> 0.18.5 2022-02-06 23:07:55 +08:00
Renaud
7d9826eb8b gxmessage: update homepage and source URLs
and use SPDX 3.0 license identifier
2022-02-06 15:10:50 +01:00
Vladimír Čunát
3dfddd89c6
Merge branch 'master' into staging-next
Trivial conflict in pkgs/top-level/aliases.nix
2022-02-06 10:29:49 +01:00
zowoq
598c791f2c
Revert "hello: 2.10 -> 2.12" (#158328)
This reverts commit 3e4412db9c.

broke `stdenvBootstrapTools.x86_64-darwin.test`, blocking nixpkgs-unstable
2022-02-06 03:00:34 -05:00
Anderson Torres
bbc55813aa
Merge pull request #158263 from sternenseemann/fcft-3.0.0
fcft: 2.5.1 -> 3.0.1; foot: 1.10.3 -> 1.11.0; fuzzel: 1.6.5 -> 1.7.0; yambar: 1.7.0 -> 1.8.0; fnott: 1.1.2 -> 1.2.0
2022-02-06 01:00:18 -03:00
sternenseemann
43e2ae75df fnott: 1.1.2 -> 1.2.0
https://codeberg.org/dnkl/fnott/releases/tag/1.2.0
2022-02-05 23:27:21 +01:00
sternenseemann
efc6c8ff2f yambar: 1.7.0 -> 1.8.0
https://codeberg.org/dnkl/yambar/releases/tag/1.8.0
2022-02-05 23:27:20 +01:00
sternenseemann
ddcb876d51 fuzzel: 1.6.5 -> 1.7.0
https://codeberg.org/dnkl/fuzzel/releases/tag/1.7.0
2022-02-05 23:27:20 +01:00
davidak
a57a774cfa
Merge pull request #157314 from onny/passwordsafe
gnome-passwordsafe: rename to gnome-secrets, 5.1 -> 6.1
2022-02-05 21:55:38 +01:00
Mario Rodas
00089fcaf0
Merge pull request #157944 from Lyndeno/pueue-1.0.6
pueue: 1.0.4 -> 1.0.6
2022-02-05 13:28:50 -05:00
Maximilian Bosch
c0bd479d77
zathura: improve overridability; set plugin dir through the environment
The current package setup has two issues:

* You can only access `pkgs.zathura` which is the "final" derivation,
  i.e. a wrapper. This is a problem if you want to apply a patch to
  `zathura(1)` in an overlay. To make this a bit easier, I decided to
  expose `zathuraPkgs` entirely and `zathura` is now
  `zathuraPkgs.zathuraWrapper`.

  With this change, patches can now be added like this:

  ```
  with import ./. {
    overlays = [
      (self: super: {
        zathura = super.zathura.override {
          zathura_core = super.zathuraPkgs.zathura_core.overrideAttrs (_: {
            patches = [
              ~/Projects/zathura/0001-Fix-remote-link-resolution-in-zathura.patch
            ];
          });
        };
      })
    ];
  };
  zathura
  ```

* As soon as you open another window in `zathura` from `zathura` (e.g.
  to follow a PDF-embedded link to another PDF), it currently fails
  because `--plugins-dir=` isn't passed along. This is because `zathura`
  uses `argv[0]`[1] to open another process and the GApps-wrapper inside
  `zathuraPkgs.zathura_core` does a `exec -a "$0"` which isn't the
  `bin/zathura` from the wrapper that appends `--plugins-dir=`:

  ```
  execve("/nix/var/nix/profiles/per-user/ma27/home-manager-140-link/home-path/bin/zathura", ["/nix/var/nix/profiles/per-user/ma27/home-manager-140-link/home-path/bin/zathura", "/home/ma27/Documents/Uni/Studium/Notepad/Aktuell/Index.pdf"], 0x7ffd7a4bf4b0 /* 108 vars */) = 0
  execve("/nix/store/2wjhxbgzcnn0qqdwqy0m01hw39dxwfmk-zathura-0.4.8-bin/bin/zathura", ["/nix/store/2wjhxbgzcnn0qqdwqy0m01hw39dxwfmk-zathura-0.4.8-bin/bin/zathura", "--plugins-dir=/nix/store/wcch63yzwykc9x5393dzjfdxsf80mrb8-zathura-with-plugins-0.4.8/lib/zathura", "/home/ma27/Documents/Uni/Studium/Notepad/Aktuell/Index.pdf"], 0x1442010 /* 107 vars */) = 0
  execve("/nix/store/2wjhxbgzcnn0qqdwqy0m01hw39dxwfmk-zathura-0.4.8-bin/bin/.zathura-wrapped", ["/nix/store/2wjhxbgzcnn0qqdwqy0m01hw39dxwfmk-zathura-0.4.8-bin/bin/zathura", "--plugins-dir=/nix/store/wcch63yzwykc9x5393dzjfdxsf80mrb8-zathura-with-plugins-0.4.8/lib/zathura", "/home/ma27/Documents/Uni/Studium/Notepad/Aktuell/Index.pdf"], 0x81d010 /* 108 vars */) = 0
  ```

  I figured it's way simpler to actually use the environment variable
  `ZATHURA_PLUGINS_PATH` for that purpose as the environment is
  inherited when a new process is started.

[1] 242329b534/zathura/links.c (L205-215)
2022-02-05 19:27:24 +01:00
github-actions[bot]
63e54d6343
Merge master into staging-next 2022-02-05 06:01:20 +00:00
Vladimir Serov
1766d4bc09 super-slicer: 2.3.57.9 -> 2.3.57.10 2022-02-04 21:44:19 -08:00
R. Ryantm
ff102452dd rofi-emoji: 2.2.0 -> 2.3.0 2022-02-04 18:31:11 -08:00
Ryan Mulligan
438ec49e52
Merge pull request #158095 from r-ryantm/auto-update/xplr
xplr: 0.17.1 -> 0.17.2
2022-02-04 16:07:02 -08:00
github-actions[bot]
c69fbb8dc5
Merge master into staging-next 2022-02-05 00:01:49 +00:00
Maximilian Bosch
50178beea3
Merge pull request #157812 from JesusMtnezForks/hugo
hugo: 0.92.0 -> 0.92.1
2022-02-04 20:23:51 +01:00
Jan Tojnar
bfd44c17cd Merge branch 'master' into staging-next
; Conflicts:
;	pkgs/top-level/aliases.nix
2022-02-04 19:54:59 +01:00
Sandro
9faf8ff7b4
Merge pull request #156565 from Groestlcoin/electrum-grs-nix 2022-02-04 18:56:41 +01:00
Jonas Heinrich
61b6ed869a gnome-passwordsafe: rename to gnome-secrets, 5.0->6.1 2022-02-04 15:14:19 +01:00
Sandro
221959fbbd
Merge pull request #158077 from legendofmiracles/update/archi 2022-02-04 10:57:44 +01:00
R. Ryantm
3410d872a3 xplr: 0.17.1 -> 0.17.2 2022-02-04 09:24:37 +00:00
Jonathan Ringer
9a16965c75
Merge remote-tracking branch 'origin/staging-next' into staging
Conflicts:
	pkgs/development/python-modules/awesomeversion/default.nix
	pkgs/development/python-modules/md2gemini/default.nix
	pkgs/development/python-modules/mill-local/default.nix
	pkgs/development/python-modules/pyatv/default.nix
	pkgs/development/python-modules/pyezviz/default.nix
	pkgs/development/python-modules/pyinsteon/default.nix
	pkgs/development/python-modules/pylitterbot/default.nix
	pkgs/development/python-modules/pynuki/default.nix
	pkgs/development/python-modules/pypck/default.nix
	pkgs/development/python-modules/types-requests/default.nix
	pkgs/top-level/aliases.nix
2022-02-03 21:29:24 -08:00
legendofmiracles
92d7fa372b
ArchiSteamFarm: 5.2.1.5 -> 5.2.2.4; ASF-ui: update 2022-02-03 11:32:05 -06:00
Robert Schütz
0ccdb13c05 numberstation: 1.0.1 -> 1.1.0
https://git.sr.ht/~martijnbraam/numberstation/refs/1.1.0
2022-02-03 17:12:03 +00:00
Jean-François Roche
743d011616
hivemind: 1.0.6 -> 1.1.0 (#157994)
Update to latest release: https://github.com/DarthSim/hivemind/releases/tag/v1.1.0
2022-02-03 17:15:34 +01:00
Bobby Rong
7298ec8107
Merge pull request #157155 from jyooru/update/obsidian
obsidian: 0.13.19 -> 0.13.23
2022-02-03 17:52:31 +08:00
Lyndon Sanche
246b211ffa
pueue: 1.0.4 -> 1.0.6 2022-02-02 22:22:09 -07:00
markuskowa
26cb4546ed
Merge pull request #157701 from devhell/bump-zettlr
zettlr: 2.1.2 -> 2.1.3
2022-02-02 21:56:33 +01:00
Pavol Rusnak
88b39f7a87
Merge pull request #157852 from SuperSandro2000/electrum
electrum: do not break upstream patches
2022-02-02 17:34:02 +01:00
gruve-p
b10399bf39 Electrum-grs: init at 4.1.5 2022-02-02 16:31:20 +01:00
Sandro
f949fad39a
electrum: do not break upstream patches 2022-02-02 16:10:54 +01:00
Sandro
ac902152fe
Merge pull request #157371 from Enzime/fix/spotify-tray-automake 2022-02-02 14:43:10 +01:00
Louis Bettens
381cd2534b p2pool: 1.4 -> 1.6 2022-02-02 11:50:55 +01:00
Louis Bettens
02ad5efebf p2pool: add update script 2022-02-02 11:50:39 +01:00
JesusMtnez
04e546b931
hugo: 0.92.0 -> 0.92.1 2022-02-02 08:29:22 +01:00
github-actions[bot]
900bded560
Merge staging-next into staging 2022-02-02 06:01:57 +00:00
Sergei Trofimovich
3e4412db9c
hello: 2.10 -> 2.12 (#156591) 2022-02-02 00:27:00 -05:00
Dmitry Kalinkin
3087088c41
Merge branch 'staging-next' into staging
Conflicts:
	pkgs/top-level/aliases.nix
	pkgs/top-level/python-aliases.nix
2022-02-01 21:37:39 -05:00
Robert Schütz
c7d68f57c8 pure-maps: 2.6.5 -> 2.9.2 2022-02-01 22:52:06 +00:00
markuskowa
3d3573c178
Merge pull request #157110 from r-ryantm/auto-update/qcad
qcad: 3.27.1.3 -> 3.27.1.6
2022-02-01 22:41:03 +01:00
Felix Bühler
4120d0fed3
Merge pull request #157420 from bew/update-rofi-wayland
rofi-wayland: 1.7.2+wayland1 -> 1.7.3+wayland1
2022-02-01 22:38:25 +01:00
Felix Bühler
d67bd71972
Merge pull request #157419 from bew/update-rofi
rofi: 1.7.2 -> 1.7.3
2022-02-01 22:36:55 +01:00
Martin Weinelt
778d148959
Merge pull request #155061 from piegamesde/gnome 2022-02-01 20:53:10 +01:00
Renaud
291ae149c1
Merge pull request #157378 from LeSuisse/librecad-CVE-2021-45342
librecad: apply patch for CVE-2021-45342
2022-02-01 19:33:07 +01:00
github-actions[bot]
e977885cba
Merge staging-next into staging 2022-02-01 18:05:39 +00:00
Ryan Mulligan
0628dd529f
Merge pull request #157473 from r-ryantm/auto-update/xdg-launch
xdg-launch: 1.11 -> 1.12
2022-02-01 08:15:03 -08:00
Ryan Mulligan
772541b258
Merge pull request #156521 from r-ryantm/auto-update/inherd-quake
inherd-quake: 0.4.0 -> 0.5.0
2022-02-01 08:13:08 -08:00
Sandro
4db6ee991a
Merge pull request #154259 from berbiche/swaynotificationcenter/init-at-2021-12-03 2022-02-01 15:58:26 +01:00
legendofmiracles
83e3261d42
Merge pull request #157685 from r-ryantm/auto-update/wtf
wtf: 0.40.0 -> 0.41.0
2022-02-01 09:35:10 -05:00
devhell
968cf48657 zettlr: 2.1.2 -> 2.1.3 2022-02-01 13:40:08 +00:00
R. Ryantm
6c568480be wtf: 0.40.0 -> 0.41.0 2022-02-01 12:12:03 +00:00
github-actions[bot]
f636a27dac
Merge staging-next into staging 2022-02-01 12:01:45 +00:00
zowoq
503c69b9cd slides: update vendorSha256 2022-02-01 17:20:04 +10:00
zowoq
b14d7dbf1d skate: update vendorSha256 2022-02-01 17:20:04 +10:00
github-actions[bot]
d01fda023b
Merge staging-next into staging 2022-02-01 06:01:50 +00:00
zowoq
33132bd705 limesctl: update vendorSha256 2022-02-01 15:42:33 +10:00
zowoq
aa3cbc6feb hugo: update vendorSha256 2022-02-01 15:42:33 +10:00
zowoq
7d374e858a ticker: update vendorSha256 2022-02-01 12:39:20 +10:00
zowoq
d53e83dd7d ratt: update vendorSha256 2022-02-01 12:35:44 +10:00
zowoq
2390f7b4fa nwg-menu: update vendorSha256 2022-02-01 12:34:38 +10:00
zowoq
71e65d9b27 llama: update vendorSha256 2022-02-01 12:34:38 +10:00
Nicolas Berbiche
ec3c207178
SwayNotificationCenter: init at 0.3 2022-01-31 20:37:02 -05:00
github-actions[bot]
aee8ca6639
Merge staging-next into staging 2022-02-01 00:02:21 +00:00
Robert Schütz
9607743161 etesync-dav: 0.30.8 -> 0.32.1
https://github.com/etesync/etesync-dav/blob/v0.32.1/ChangeLog.md
2022-01-31 23:02:53 +00:00
wucke13
d4e1518758
edgetx: init at 2.6.0 (#152091)
Co-authored-by: Wanja Zaeske <wanja.zaeske@dlr.de>
2022-01-31 21:25:59 +01:00
Philipp Woelfel
1f3c6c657d
pdfstudio: added function for creating src url (#156635)
pdfstudio: added function for creating src url
2022-01-31 21:13:37 +01:00
Martin Weinelt
8a4180ef0e octoprint: 1.7.2 -> 1.7.3 2022-01-31 19:47:07 +01:00
github-actions[bot]
ed5ed282df
Merge staging-next into staging 2022-01-31 18:06:44 +00:00
R. Ryantm
a7559619a6 nwg-panel: 0.5.4 -> 0.5.7 2022-01-31 10:04:42 -08:00
R. Ryantm
bc98c62d27 snapmaker-luban: 4.1.3 -> 4.1.4 2022-01-31 09:57:56 -08:00
R. Ryantm
a1a3c3b110 clightd: 5.4 -> 5.5 2022-01-31 09:24:36 -08:00
R. Ryantm
6ac966a5be xmrig: 6.16.2 -> 6.16.3 2022-01-31 09:12:58 -08:00
Doron Behar
8d9215d3dc pdfsam-basic: 4.2.10 -> 4.2.12 2022-01-31 18:32:31 +02:00
R. Ryantm
2a87059040 spicetify-cli: 2.8.4 -> 2.8.5 2022-01-31 07:03:24 -08:00
Bobby Rong
588b6dfa7f
Merge pull request #156540 from sei40kr/update-todoist-electron
todoist-electron: 1.0.1 -> 1.0.3
2022-01-31 22:53:40 +08:00
Bobby Rong
7cade6a13b
Merge pull request #156358 from jojosch/dbeaver-update
dbeaver: 21.3.2 -> 21.3.3
2022-01-31 22:31:59 +08:00
Bobby Rong
25a7bc5ad5
Merge pull request #156961 from bobvanderlinden/pr-neo4j-desktop-1.4.12
neo4j-desktop: 1.4.7 -> 1.4.12
2022-01-31 21:30:37 +08:00
github-actions[bot]
87efa4e516
Merge staging-next into staging 2022-01-31 12:01:50 +00:00
Jan Tojnar
54b828006e Merge branch 'staging-next' into staging 2022-01-31 12:57:47 +01:00
Bobby Rong
31d25842a1
Merge pull request #157489 from McSinyx/mepo-0.3
mepo: 0.2 -> 0.3
2022-01-31 19:39:16 +08:00
R. RyanTM
e67d26b0f0
rmapi: 0.0.18 -> 0.0.19 (#157495) 2022-01-31 10:45:35 +00:00
Nguyễn Gia Phong
9811d0d44c
mepo: 0.2 -> 0.3 2022-01-31 14:43:17 +07:00
zowoq
7382672cdc expenses: update vendorSha256 2022-01-31 17:24:26 +10:00
zowoq
e0f8a10cbe charm: update vendorSha256 2022-01-31 13:41:40 +10:00
R. Ryantm
ce45d1e43c xdg-launch: 1.11 -> 1.12 2022-01-31 02:47:26 +00:00
zowoq
1ca665dd6c wtf: update vendorSha256 2022-01-31 11:50:28 +10:00
Robert Scott
6afa07cd8f
Merge pull request #157432 from illdefined/cloak
cloak: 0.2.0 -> 0.3.0
2022-01-30 22:17:47 +00:00
R. Ryantm
42ddf4aea4 urlscan: 0.9.8 -> 0.9.9 2022-01-30 19:10:08 +00:00
Mikael Voss
e9cdc3fb36
cloak: 0.2.0 -> 0.3.0 2022-01-30 19:53:03 +01:00
github-actions[bot]
5adebefe23
Merge staging-next into staging 2022-01-30 18:01:45 +00:00
Benoit de Chezelles
174e7bdf07 rofi-wayland: 1.7.2+wayland1 -> 1.7.3+wayland1 2022-01-30 17:55:50 +01:00
Benoit de Chezelles
e2b2afc9b4 rofi: 1.7.2 -> 1.7.3 2022-01-30 17:51:31 +01:00
Guillaume Girol
c7ec7379d8
Merge pull request #157282 from teutat3s/feature/qMasterPassword-fixes
qMasterPassword: 1.2.2 -> git master
2022-01-30 16:03:05 +00:00
github-actions[bot]
34734b6cae
Merge staging-next into staging 2022-01-30 12:01:49 +00:00
Thomas Gerbet
6896348d0f librecad: apply patch for CVE-2021-45342
https://github.com/LibreCAD/LibreCAD/issues/1464
2022-01-30 10:56:31 +01:00
Michael Hoang
6ab503ec56 spotify-tray: fix building with Automake 1.16.5 2022-01-30 19:00:17 +11:00
zowoq
e7746dccc1 dasel: update vendorSha256 2022-01-30 16:07:07 +10:00
github-actions[bot]
ce60c22080
Merge staging-next into staging 2022-01-30 06:01:52 +00:00
teutat3s
e1aa7d7609
qMasterPassword: 1.2.2 -> git master 2022-01-30 04:12:37 +01:00
Robert Schütz
151123a54d weather: use python3 2022-01-30 03:05:19 +00:00
Sandro
bcd452a554
Merge pull request #157306 from mdtisdall/_1password_aarch64_fix 2022-01-30 01:11:27 +01:00
Dylan Tisdall
7583e479cb _1password: download arm64 binary for aarch64-linux 2022-01-29 19:37:43 +00:00
github-actions[bot]
36d79e245e
Merge staging-next into staging 2022-01-29 18:01:43 +00:00
piegames
b16e5d212e gksu: drop 2022-01-29 18:09:15 +01:00
piegames
6aa8521224 pdfmod: drop 2022-01-29 18:09:13 +01:00
piegames
fb163439eb yarssr: drop 2022-01-29 18:08:51 +01:00
piegames
a9bbc8be84 fslint: drop
Requires python2 and libglade (both EOL).
Upstream recommends using [czkawka](https://qarmin.github.io/czkawka/) instead.
2022-01-29 18:08:51 +01:00
Bobby Rong
a4b31cd067
Merge pull request #156596 from r-ryantm/auto-update/moonlight-qt
moonlight-qt: 3.1.4 -> 3.2.0
2022-01-29 23:06:12 +08:00
dan4ik
6e414c4563 CuboCore.packages: 4.2.0 -> 4.3.0 2022-01-29 14:58:10 +07:00
github-actions[bot]
1dc27d7e71
Merge staging-next into staging 2022-01-28 18:01:47 +00:00
Elian Doran
80ec92d55a openrgb: add desktop icon 2022-01-28 09:21:48 -08:00
Joel
4a8911363c
obsidian: 0.13.19 -> 0.13.23 2022-01-29 01:15:01 +10:00
Jan Tojnar
2da5ce4ab3 Merge branch 'staging-next' into staging
; Conflicts:
;	pkgs/development/python-modules/fakeredis/default.nix
2022-01-28 14:05:11 +01:00
Zhaofeng Li
7b48f61bff phoc: 0.11.0 -> 0.12.0 2022-01-28 02:32:13 -08:00
R. Ryantm
7f6a7ee25e qcad: 3.27.1.3 -> 3.27.1.6 2022-01-28 08:47:47 +00:00
Stig
196873f601
Merge pull request #155116 from wentasah/amc-add-oodoc
auto-multiple-choice: add OpenOfficeOODoc perl module as dependency
2022-01-27 17:37:02 +01:00
dasj19
83ab260bbe
tomboy: remove (#156979)
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2022-01-27 15:21:33 +01:00
Sandro
27cccd4e49
Merge pull request #151363 from Stunkymonkey/doc-updateWalker 2022-01-27 14:06:36 +01:00
Mario Rodas
f74ffdfc36
Merge pull request #156792 from r-ryantm/auto-update/gallery_dl
gallery-dl: 1.20.1 -> 1.20.3
2022-01-27 05:58:50 -05:00
Bob van der Linden
aa9cc7d3cc
neo4j-desktop: 1.4.7 -> 1.4.12 2022-01-27 08:36:21 +01:00
Dmitry Kalinkin
0693fd77f7
Merge branch 'staging-next' into staging
Conflicts:
	nixos/doc/manual/from_md/release-notes/rl-2205.section.xml
	nixos/doc/manual/release-notes/rl-2205.section.md
	pkgs/development/python-modules/aioesphomeapi/default.nix
	pkgs/development/python-modules/mat2/default.nix
	pkgs/development/python-modules/pydevccu/default.nix
	pkgs/development/python-modules/pywlroots/default.nix
	pkgs/development/python-modules/rokuecp/default.nix
2022-01-27 00:54:10 -05:00
Felix Buehler
09e3b7a570 treewide: remove all updateWalker/downloadURLRegexp 2022-01-26 21:46:08 +01:00
Felix Buehler
ed7bf9452c treewide: remove *.upstream files from updateWalker 2022-01-26 21:46:07 +01:00
AndersonTorres
0cf3393cdd fme: remove 2022-01-26 08:02:53 -03:00
Bobby Rong
ebddede8da
Merge pull request #156708 from kraem/kraem/rivercarro_0_1_2
rivercarro: 0.1.1 -> 0.1.2
2022-01-26 17:16:10 +08:00
Fabian Affolter
3b55df970b
Merge pull request #156404 from r-ryantm/auto-update/cherrytree
cherrytree: 0.99.44 -> 0.99.45
2022-01-26 10:13:07 +01:00
Ryan Mulligan
ac5092cd88
Merge pull request #156592 from r-ryantm/auto-update/mob
mob: 2.2.0 -> 2.2.1
2022-01-25 18:28:54 -08:00
Louis Bettens
aa40507941 electrum: unbreak 2022-01-25 17:06:26 -08:00
Louis Bettens
354fdf80d1 electrum-ltc: unbreak 2022-01-25 17:05:20 -08:00
Robert Schütz
6d7116365a metadata-cleaner: 2.1.3 -> 2.1.4 2022-01-26 00:54:23 +00:00
R. Ryantm
719b0b6e79 gallery-dl: 1.20.1 -> 1.20.3 2022-01-26 00:42:50 +00:00
Martin Weinelt
48f17360d9 Merge remote-tracking branch 'origin/master' into staging-next 2022-01-25 15:53:19 +01:00
kraem
935fcc560b rivercarro: 0.1.1 -> 0.1.2 2022-01-25 14:50:17 +01:00
Artturi
1bcd8f6e96
Merge pull request #155557 from r-ryantm/auto-update/nwg-wrapper
nwg-wrapper: 0.1.0 -> 0.1.2
2022-01-25 15:18:59 +02:00
github-actions[bot]
cfef27f7cf
Merge master into staging-next 2022-01-25 06:01:33 +00:00
Ryan Mulligan
596dfd2164
Merge pull request #156379 from r-ryantm/auto-update/binance
binance: 1.29.0 -> 1.30.1
2022-01-24 16:46:57 -08:00
github-actions[bot]
bbbd0a92af
Merge master into staging-next 2022-01-25 00:02:13 +00:00
Philipp Woelfel
e79bb564af
pdfstudio: merge with package pdfstudioviewer (#156274)
* pdfstudio: merge with pdfstudioviewer and use FHS sandbox to fix printing

Co-authored-by: Ivv <41924494+IvarWithoutBones@users.noreply.github.com>
2022-01-25 00:30:39 +01:00
R. Ryantm
4eb1804407 moonlight-qt: 3.1.4 -> 3.2.0 2022-01-24 19:55:13 +00:00
R. Ryantm
92ce3cbd56 mob: 2.2.0 -> 2.2.1 2022-01-24 19:42:55 +00:00
github-actions[bot]
a45818989a
Merge master into staging-next 2022-01-24 18:01:03 +00:00
Thiago Kenji Okada
ccc000b7f2
Merge pull request #156538 from r-ryantm/auto-update/koreader
koreader: 2021.12.1 -> 2022.01
2022-01-24 14:51:23 -03:00
Seong Yong-ju
914b4e3eee todoist-electron: 1.0.1 -> 1.0.3 2022-01-25 00:34:20 +09:00
R. Ryantm
d38cf78e0e koreader: 2021.12.1 -> 2022.01 2022-01-24 15:31:10 +00:00
legendofmiracles
664706f6f2
Merge pull request #156470 from r-ryantm/auto-update/expenses 2022-01-24 08:54:41 -06:00
legendofmiracles
4a46547008
expenses: install shell completion 2022-01-24 08:54:13 -06:00
legendofmiracles
7006900c25
Merge pull request #155657 from r-ryantm/auto-update/topydo
topydo: 0.13 -> 0.14
2022-01-24 08:31:24 -06:00
R. Ryantm
78cbcb3346 inherd-quake: 0.4.0 -> 0.5.0 2022-01-24 14:07:12 +00:00
legendofmiracles
2afc443096
Merge pull request #156507 from r-ryantm/auto-update/heimer
heimer: 3.1.0 -> 3.2.0
2022-01-24 08:02:22 -06:00
legendofmiracles
6777bcfae6
Merge pull request #156411 from r-ryantm/auto-update/clight
clight: 4.7 -> 4.8
2022-01-24 07:59:11 -06:00
legendofmiracles
e087ccb64a
Merge pull request #156346 from r-ryantm/auto-update/rofi-file-browser-extended 2022-01-24 07:47:07 -06:00
R. Ryantm
f547487c91 heimer: 3.1.0 -> 3.2.0 2022-01-24 13:00:31 +00:00
R. Ryantm
9f786dea83 expenses: 0.2.2 -> 0.2.3 2022-01-24 09:19:18 +00:00
github-actions[bot]
b261cac75a
Merge master into staging-next 2022-01-24 06:01:18 +00:00
Michael Hoang
ab07c7aa86 surface-control: 0.3.1-2 -> 0.4.1-2 2022-01-24 14:52:27 +11:00
Mario Rodas
01639cc120
Merge pull request #156409 from r-ryantm/auto-update/clifm
clifm: 1.3 -> 1.4
2022-01-23 22:22:30 -05:00
Bobby Rong
e8d0231396
Merge pull request #155941 from r-ryantm/auto-update/qcad
qcad: 3.27.1.0 -> 3.27.1.3
2022-01-24 10:37:25 +08:00
Mario Rodas
2f4d9f88b8
Merge pull request #156268 from max-niederman/pkg/ttyper
ttyper: 0.4.0 -> 0.4.1
2022-01-23 21:33:11 -05:00
Bobby Rong
91744d9254
Merge pull request #156348 from devhell/bump-zettlr
zettlr: 2.1.1 -> 2.1.2
2022-01-24 10:31:01 +08:00
Mario Rodas
48d8809ea0
Merge pull request #156340 from 0x4A6F/master-zola
zola: 0.15.2 -> 0.15.3
2022-01-23 21:30:39 -05:00
R. Ryantm
527717df6a clight: 4.7 -> 4.8 2022-01-24 01:44:08 +00:00
R. Ryantm
96718156c7 clifm: 1.3 -> 1.4 2022-01-24 01:22:44 +00:00
ajs124
140a55ea38
Merge pull request #156357 from r-ryantm/auto-update/AusweisApp2
AusweisApp2: 1.22.2 -> 1.22.3
2022-01-24 01:22:11 +01:00
R. Ryantm
00538458bd cherrytree: 0.99.44 -> 0.99.45 2022-01-24 00:11:21 +00:00
Sandro
635d6e8cfe
Merge pull request #144337 from WolfangAukang/firefly 2022-01-24 01:02:07 +01:00
github-actions[bot]
11cced7438
Merge master into staging-next 2022-01-24 00:01:45 +00:00
R. Ryantm
84fc3eca44 binance: 1.29.0 -> 1.30.1 2022-01-23 22:35:03 +00:00
Maximilian Bosch
f6f0e1eb55
Merge pull request #156190 from arcnmx/buku-noserver
buku: make bukuserver optional
2022-01-23 22:53:51 +01:00
Johannes Schleifenbaum
0404aa9e1a
dbeaver: 21.3.2 -> 21.3.3 2022-01-23 21:26:33 +01:00
R. Ryantm
5e822e54d2 AusweisApp2: 1.22.2 -> 1.22.3 2022-01-23 20:24:31 +00:00
github-actions[bot]
93a9821309
Merge master into staging-next 2022-01-23 18:01:11 +00:00
devhell
e15eef0aab zettlr: 2.1.1 -> 2.1.2 2022-01-23 17:59:31 +00:00
R. Ryantm
47c36939d5 rofi-file-browser: 1.2.0 -> 1.3.0 2022-01-23 17:26:18 +00:00
0x4A6F
6e66a07719
zola: 0.15.2 -> 0.15.3 2022-01-23 17:07:41 +01:00
Martin Weinelt
98870a6bfa
Merge pull request #156192 from ncfavier/fix-meson-builds 2022-01-23 15:55:18 +01:00
legendofmiracles
0bae434abd
Merge pull request #154946 from kraem/kraem/rivercarro_init 2022-01-23 07:17:51 -06:00
Bobby Rong
d23da52dae
Merge pull request #155242 from trofi/update-arthe-for-fno-common
artha: 1.0.3 -> 1.0.5
2022-01-23 20:58:09 +08:00
github-actions[bot]
591c66a4e3
Merge master into staging-next 2022-01-23 06:00:56 +00:00
Max Niederman
4bd708e40b
ttyper: 0.4.0 -> 0.4.1 2022-01-22 21:41:45 -08:00
Sandro
814d42fe76
Merge pull request #154056 from tfmoraes/zettlr-2.1.1 2022-01-23 04:05:41 +01:00
github-actions[bot]
429249f120
Merge master into staging-next 2022-01-23 00:01:54 +00:00