Fabian Affolter
d0a7cf788e
python3Packages.canonicaljson: 1.5.0 -> 1.6.0
2022-03-06 17:07:46 +01:00
Felix Buehler
410b386d15
ssr: refactor
2022-03-06 17:04:44 +01:00
R. Ryantm
2e2ac7320e
radarr: 4.0.4.5922 -> 4.0.5.5981
2022-03-06 16:02:02 +00:00
Renaud
f0e1d5094f
Merge pull request #162925 from r-ryantm/auto-update/werf
...
werf: 1.2.72 -> 1.2.73
2022-03-06 16:53:10 +01:00
Guillaume Girol
0e14f98d2e
Merge pull request #161934 from NickCao/aubio-cross
...
aubio: fix cross compilation
2022-03-06 15:50:31 +00:00
Matthieu Coudron
8cf2630925
tshark: alias to wireshark-cli
...
the tshark alias got removed in https://github.com/NixOS/nixpkgs/pull/161146 .
To have a longstanding alias, it was recommended to add it next to the
attribute.
2022-03-06 16:47:47 +01:00
Renaud
3af4b065f1
Merge pull request #162956 from r-ryantm/auto-update/bacon
...
bacon: 2.0.0 -> 2.0.1
2022-03-06 16:39:20 +01:00
Renaud
8d2a3c7108
Merge pull request #162959 from r-ryantm/auto-update/btop
...
btop: 1.2.4 -> 1.2.5
2022-03-06 16:32:48 +01:00
Guillaume Girol
dfd24b1450
Merge pull request #160408 from r-burns/linux-pam-from-darwin
...
pam: fix cross-compilation from darwin
2022-03-06 15:32:25 +00:00
Emery Hemingway
5ea0468032
nncp: 8.6.0 -> 8.7.0
2022-03-06 15:18:17 +00:00
P. R. d. O
658f846584
chezmoi: 2.12.1 -> 2.13.1
2022-03-06 09:07:43 -06:00
Guillaume Girol
9fbd32c573
ocamlPackages.ocaml-lsp: 1.9.1 -> 1.10.3
...
changelog: https://github.com/ocaml/ocaml-lsp/blob/master/CHANGES.md
tested on a project with ocaml 4.08, 4.12 and 4.13
2022-03-06 15:44:35 +01:00
Bobby Rong
21a985f2e7
Merge pull request #162112 from r-ryantm/auto-update/taskwarrior-tui
...
taskwarrior-tui: 0.18.5 -> 0.20.1
2022-03-06 22:33:54 +08:00
R. Ryantm
afb3e01958
grails: 4.1.0.M1 -> 5.1.2
2022-03-06 15:29:42 +01:00
Bobby Rong
a4fd4ac137
Merge pull request #161865 from r-ryantm/auto-update/rocketchat-desktop
...
rocketchat-desktop: 3.7.7 -> 3.7.8
2022-03-06 22:17:04 +08:00
Simarra
6e73c0de7d
cozy-drive: 3.30.1 -> 3.32.0
...
https://github.com/cozy-labs/cozy-desktop/releases/tag/v3.31.0
https://github.com/cozy-labs/cozy-desktop/releases/tag/v3.32.0
#162870
2022-03-06 22:13:45 +08:00
Samuel Gräfenstein
1122130c6f
ungoogled-chromium: inherit upstream's build flags
...
This ensures that our build flags for ungoogled-chromium will remain
up-to-date with upstream's defaults (also important for avoiding build
errors).
Co-authored-by: Michael Weiss <dev.primeos@gmail.com>
2022-03-06 15:11:19 +01:00
Fabian Affolter
fc6e238e3a
authz0: init at 1.1.1
2022-03-06 15:03:34 +01:00
Bobby Rong
c767118672
Merge pull request #162158 from r-ryantm/auto-update/fits-cloudctl
...
fits-cloudctl: 0.10.9 -> 0.10.10
2022-03-06 21:40:57 +08:00
Bobby Rong
9df2200638
Merge pull request #162869 from r-ryantm/auto-update/lfs
...
lfs: 2.2.0 -> 2.4.0
2022-03-06 21:39:18 +08:00
Fabian Affolter
a3dc42f295
python3Packages.intellifire4py: 0.9.10 -> 1.0.0
2022-03-06 14:18:36 +01:00
R. Ryantm
64373d18f9
mtools: 4.0.37 -> 4.0.38
2022-03-06 13:17:23 +00:00
Bobby Rong
7a622c17fd
Merge pull request #162975 from r-ryantm/auto-update/marvin
...
marvin: 22.3.0 -> 22.7.0
2022-03-06 20:53:44 +08:00
Fabian Affolter
f266c52f8d
python3Packages.cmarkgfm: 0.7.0 -> 0.8.0
2022-03-06 13:48:14 +01:00
Fabian Affolter
9f77f8387a
python3Packages.readme_renderer: 32.0 -> 33.0
2022-03-06 13:45:27 +01:00
Adam Joseph
c7a7acb034
sway: respect systemdSupport and dbusSupport ( #160972 )
...
Sway can be compiled with or without systemd(-logind) and dbus. This
commit exposes that support via the global systemdSupport and
dbusSupport arguments, which are understood by many other nixpkgs
expressions and can be set globally in ~/.config/nixpkgs/config.nix.
This commit also adds a third argument, trayEnabled, which allows to
disable sway's tray. The tray requires dbusSupport and
systemdSupport.
Reviewers of this commit asked for potential use cases. There are
many of them; a very non-exhaustive list includes:
* Use of nixpkgs on operating systems which systemd does not support,
such as MacOS/Darwin, FreeBSD, OpenBSD, or Alpine Linux.
* Use of nixpkgs on *-musl platforms, which systemd does not
officially support (out-of-tree patches to support musl exist for a
few systemd versions).
* Use of sway in situations where dbus is inappropriate, such as
sway's "kiosk mode".
* High-security environments, where the additional attack surface
exposed by dbus outweighs any features it may offer.
This is a very non-exhaustive list.
2022-03-06 13:39:31 +01:00
Bobby Rong
a943a5d9da
Merge pull request #162971 from r-ryantm/auto-update/foxotron
...
foxotron: 2021-08-13 -> 2022-03-05
2022-03-06 20:37:59 +08:00
Fabian Affolter
7429dcdcb6
Merge pull request #162989 from fabaff/bump-checkov
...
checkov: 2.0.913 -> 2.0.918
2022-03-06 13:06:56 +01:00
Martin Weinelt
8f176cfe2c
Merge pull request #162987 from fabaff/bump-pydroid-ipcam
2022-03-06 12:46:20 +01:00
Michael Weiss
d45e9975c1
Merge pull request #162926 from primeos/ungoogled-chromium
...
ungoogled-chromium: 98.0.4758.102 -> 99.0.4844.51
2022-03-06 12:18:28 +01:00
Fabian Affolter
6ede618329
python3Packages.pydroid-ipcam: 2021-06-01 -> 1.3.1
2022-03-06 11:36:04 +01:00
R. RyanTM
047ac8cca2
csound: 6.16.2 -> 6.17.0
...
* csound: 6.16.2 -> 6.17.0 (#159181 )
* csound: update meta attributes
Homepage is https://csound.com/
License is LGPL-2.1-or-later
Co-authored-by: Renaud <c0bw3b@users.noreply.github.com>
2022-03-06 11:34:58 +01:00
Bobby Rong
e50bc4dd24
Merge pull request #162600 from r-ryantm/auto-update/lightburn
...
lightburn: 1.0.06 -> 1.1.00
2022-03-06 18:27:01 +08:00
Artturi
f43e1c5ccf
Merge pull request #162974 from r-ryantm/auto-update/mkgmap
...
mkgmap: 4896 -> 4897
2022-03-06 12:18:15 +02:00
Artturi
b5949caa32
Merge pull request #162967 from r-ryantm/auto-update/ddgr
...
ddgr: 1.9 -> 2.0
2022-03-06 12:16:38 +02:00
Artturi
f1f33ad4f8
Merge pull request #162964 from dan4ik605743/ya-browser
...
yandex-browser: 21.6.2.817-1 -> 22.1.3.856-1
2022-03-06 12:14:06 +02:00
Artturi
00b9e1d97f
Merge pull request #162963 from r-ryantm/auto-update/kdiff3
...
kdiff3: 1.9.4 -> 1.9.5
2022-03-06 12:09:08 +02:00
Artturi
f1ae56db56
Merge pull request #162962 from r-ryantm/auto-update/calamares
...
calamares: 3.2.51 -> 3.2.53
2022-03-06 12:08:38 +02:00
Fabian Affolter
05a656acf1
checkov: 2.0.913 -> 2.0.918
2022-03-06 11:02:52 +01:00
Bobby Rong
599e7aa260
Merge pull request #162830 from rhoriguchi/adguardhome
...
adguardhome: 0.107.4 - 0.107.5
2022-03-06 17:59:10 +08:00
Adam Joseph
64cb3a021b
tiny: make dbus, openssl, and notifications each optional
...
This commit exposes support for compilation without dbus, controlled
by the global dbusSupport argument. This argument is understood by
many other nixpkgs expressions and can be set globally in
~/.config/nixpkgs/config.nix.
This commit also adds two package-specific arguments:
* notificationsSupport allows to disable the desktop-notifications
feature when invoking cargo.
* useOpenSSL can be set to false in order to compile tiny with rustls
instead of openssl.
2022-03-06 01:50:19 -08:00
Bobby Rong
fdef38e8e3
Merge pull request #162966 from dan4ik605743/gd-bump
...
github-desktop: 2.9.6 -> 2.9.9
2022-03-06 17:40:53 +08:00
Bobby Rong
f8ba335dfe
Merge pull request #162890 from r-ryantm/auto-update/clipster
...
clipster: 2.0.2 -> 2.1.1
2022-03-06 17:35:35 +08:00
Bobby Rong
bc38b1a736
Merge pull request #162761 from 06kellyjac/cosign
...
cosign: 1.5.2 -> 1.6.0
2022-03-06 17:34:27 +08:00
Artturi
0ba426a475
Merge pull request #156605 from kampka/e2fsprogs-test
...
e2fsprogs: Add test
2022-03-06 11:19:48 +02:00
lewo
a13a62d93d
Merge pull request #162860 from nlewo/fix-geant4.data
...
geant4.data: fix evaluation
2022-03-06 10:05:18 +01:00
R. Ryantm
80034b3d4f
jc: 1.18.3 -> 1.18.5
2022-03-06 08:17:14 +00:00
Artturi
c5a78fde9c
Merge pull request #161922 from jyooru/remove/steam-fonts
...
steam-fonts: remove
2022-03-06 10:16:11 +02:00
Artturi
00178a6874
Merge pull request #160189 from evils/appimage-gmp
...
appimageTools: add gmp to the environment
2022-03-06 10:01:54 +02:00
lewo
cd5cd88592
Merge pull request #162774 from r-ryantm/auto-update/open-policy-agent
...
open-policy-agent: 0.37.2 -> 0.38.0
2022-03-06 08:57:42 +01:00