Guillaume Girol
c3bb176525
Merge pull request #99418 from woffs/stenc-1.0.8
...
stenc: 1.0.7 -> 1.0.8
2021-01-23 15:02:24 +00:00
Robert Schütz
4070fb501b
abcmidi: 2020.12.10 -> 2021.01.21
2021-01-23 15:35:19 +01:00
Sander van der Burg
26642f208b
ldgallery: update generation script and regenerate Nix expressions
2021-01-23 15:15:24 +01:00
github-actions[bot]
58752914f4
Merge master into staging-next
2021-01-23 12:40:13 +00:00
Jörg Thalheim
38833ce603
Merge pull request #99386 from mohe2015/smaller-system
...
grub2: Properly disable zfs by default
2021-01-23 11:22:19 +00:00
Sander van der Burg
9af95960e2
skawarePackages: 2021-01 release
...
Maintainer notes
-----
The execline exec function interface changed quite drastically, and
backwards-compatibility to the old functions was dropped in-between
the last release and this one. Thus, downstream code might break.
At the end of this commit message is a compatibility interface.
-----
Release notes
-----
Hello,
Happy New Year to everyone!
New versions of the skarnet.org packages are available.
This is a major release. The skalibs major version number has been
bumped, which means that compatibility with previous versions is not
ensured. Other packages have been updated to build against the new
skalibs. If they only had their patch number increased, that's all
the modifications they had (save for possible bugfixes); but some
packages also received significant changes and underwent either a major
(compatibility not ensured) or minor (simple additions) release.
Support for the 2.9.* branch of skalibs, and associated versions of
the other packages, is still ensured for a while, but users are always
strongly encouraged to upgrade.
* General
-------
- Some rarely-triggered build bugs have been fixed.
- -fno-stack-protector is not part of the default CFLAGS anymore;
stack protector policy now defaults to the compiler's settings.
* skalibs-2.10.0.0
----------------
- Bugfixes.
- Significant code cleanup.
- New sysdep: chroot.
- Lots of new functions, mostly to optimize the number of needed
fcntl() calls at open() time. Traces should generally be marginally
shorter than they were before.
- Removal of the DJBUNIX_FLAG_NB and DJBUNIX_FLAG_COE macros, replaced
by the POSIX O_NONBLOCK and O_CLOEXEC macros wherever they were used.
- Removal of the skalibs/webipc.h header, and better header separation.
- Complete revamping of the pathexec functions, now separated into
exec_* (simple execution) and mexec_* (execution with merging of the
environment first). In true skalibs fashion, there is a little code,
and 3 pages of convenience macros (the exec.h header).
- Complete rewrite of the locking functions, with a change of
underlying mechanisms. The skalibs locking primitives are now named
fd_lock(), fd_unlock() and fd_islocked().
The Unix locks primitive space is a horror show. flock() is not
POSIX and does not have a way to test for a lock without taking it.
The POSIX lockf() only has exclusive locks, not shared ones. The least
bad option is fcntl(), which has shared and exclusive locks *and* a way
to check for a lock without taking it, but does not allow taking a
shared lock via a O_WRONLY file descriptor. Of all inconveniences this
is the most minor one, so now skalibs uses fcntl().
https://skarnet.org/software/skalibs/
git://git.skarnet.org/skalibs
* nsss-0.1.0.0
------------
- New --enable-libc-includes configure option. Without this option,
the pwd.h, grp.h and shadow.h headers are not installed anymore, so
by default installing nsss on a FHS system does not overwrite the
libc headers.
https://skarnet.org/software/nsss/
git://git.skarnet.org/nsss
* utmps-0.1.0.0
-------------
- New --enable-libc-includes configure option. Without this option,
the utmpx.h header is not installed anymore, so by default installing
utmps on a FHS system does not overwrite the libc headers.
https://skarnet.org/software/utmps/
git://git.skarnet.org/utmps
* execline-2.7.0.0
----------------
- Bugfixes.
- The trap program has changed. The "timeout" directive has been
removed; a "default" directive has been added, to handle all signals
for which a specific directive has not been given. Subprograms are
now run with the SIGNAL environment variable set to the signal number
(in addition to ! always being set to the application's pid).
- The forstdin program has changed. It now exits 0 if it has read at
least one line, and 1 otherwise.
- The default list of delimiters for backtick, withstdinas, forstdin
and forbacktickx has been set to "\n", so by default those programs
will read and/or split on lines and only lines.
- The backtick, withstdinas, forstdin, forbacktickx, forx, getpid
and getcwd programs now have a -E option to activate autoimport.
(This saves the user from manually adding "importas var var" after
every use of these programs.)
https://skarnet.org/software/execline/
git://git.skarnet.org/execline
* s6-2.10.0.0
-----------
It is imperative to restart your supervision trees, by rebooting if
necessary, after upgrading s6 to the new version. Otherwise, new s6
binaries interacting with service directories maintained by old
s6-supervise binaries may not work.
If you are using s6-linux-init, it is necessary to upgrade to the
latest version of s6-linux-init at the same time as s6.
- Bugfixes.
- Significant code refactoring.
- The internal locking system of service directories has changed,
allowing for a cleaner permissions model and official support of
relaxed permissions.
- New binary to implement those relaxed permissions: s6-svperms.
- The "nosetsid" file is not supported anymore in service directories.
Services are now always started in a new session.
- s6-supervise now traps SIGINT: before dying, it sends a SIGINT to its
service's process group. This allows correct transmission of ^C when a
supervision tree is running in a terminal, even though every service
runs in its own session.
- s6-svc -X doesn't exist anymore. s6-supervise now always closes stdin
and stdout on the last execution of the service.
- The semantics of SIGHUP and SIGQUIT have changed for s6-supervise.
- The set of commands sent by s6-svscanctl and received by s6-svscan
has been cleaned up and made more logical.
- When told to exit normally (typically via s6-svscanctl -t), s6-svscan
now first waits for the whole supervision tree to die. The
.s6-svscan/finish script can now assume that all services are completely
down. (s6-svscanctl -b is an exception; it should not be used in normal
circumstances.)
- The -s and -S options to s6-svscan are not supported anymore. Signal
management in s6-svscan has been streamlined: signals have a default
handler that can be overridden by a corresponding executable
.s6-svscan/SIGfoo file.
- Default signal handlers for s6-svscan have more intuitive semantics.
- New binary to help with management of user-owned supervision trees:
s6-usertree-maker.
https://skarnet.org/software/s6/
git://git.skarnet.org/s6
s6 now has man pages! Thanks to flexibeast for performing the conversion
work. Please allow some time for the man pages to be updated to reflect
the current HTML documentation. The repository can be found here:
https://github.com/flexibeast/s6-man-pages
* s6-linux-init-1.0.6.0
---------------------
It *is necessary* to upgrade s6-linux-init at the same time as s6.
It *is recommended*, although not strictly necessary, to create your
run-image directory again via a s6-linux-init-maker invocation. Old
images will still boot, as long as you are using an upgraded version
of s6-linux-init; but they may incorrectly handle signals sent to init,
so for instance Ctrl-Alt-Del may not work anymore, until you run
s6-linux-init-maker again.
- New internal binary: s6-linux-init-nuke. This program is not meant
to be invoked by users directly: it simply removes a dependency to the
'kill' program in a rare case involving containers.
https://skarnet.org/software/s6-linux-init/
git://git.skarnet.org/s6-linux-init
* s6-dns-2.3.4.0
--------------
- New library function: s6dns_message_parse_question().
https://skarnet.org/software/s6-dns/
git://git.skarnet.org/s6-dns
* s6-networking-2.4.0.0
---------------------
- Important refactoring of the tls code. The crypto tunnel now runs
as a child of the application, instead of the other way around. It is
now isolated in a s6-tls[cd]-io binary; s6-tlsc is now a simple wrapper
around s6-tlsc-io, and s6-tlsd is a simple wrapper around s6-tlsd-io.
- New binaries: s6-ucspitlsc and s6-ucspitlsd. Those implement
opportunistic TLS via the UCSPI-TLS protocol.
- The -K option to the tls binaries has changed semantics: it now
enforces a timeout for the handshake instead of dropping the connection
after some inactivity. Note that this option is only useful with the
bearssl backend: the libtls backend always performs a synchronous
handshake, with no way of interrupting it after a timeout expires.
- The execline dependency is now optional. Disabling execline, however,
changes the behaviour of s6-tcpserver-access (which cannot support
exec files without it).
https://skarnet.org/software/s6-networking/
git://git.skarnet.org/s6-networking
It is now possible to build the s6-networking package against OpenSSL
instead of LibreSSL, thanks to the libretls project:
https://git.causal.agency/libretls/about/
* mdevd-0.1.3.0
-------------
- New -C option to the mdevd program. This option makes mdevd
automatically spawn a mdevd-coldplug program when it's ready, allowing
mdevd to be used as a drop-in mdev -d replacement. (Note that the
coldplug is also performed if mdevd restarts after being killed, so
this feature should not be used in place of a proper service startup
sequence with a mdevd-coldplug oneshot depending on the mdevd longrun.
It has only been added for convenience.)
https://skarnet.org/software/mdevd/
git://git.skarnet.org/mdevd
* Other packages
--------------
The following packages have received an update so they build with the
latest version of skalibs and other dependencies, but nothing has changed
except possibly some bugfixes, and hopefully not too many bug additions.
- s6-rc-0.5.2.1. (It is not necessary to recompile your service
database. However, it is necessary to upgrade s6-rc along with s6, and
to reboot the system ASAP after upgrading.)
- s6-portable-utils-2.2.3.1
- s6-linux-utils-2.5.1.4
- bcnm-0.0.1.2
Enjoy,
Bug-reports welcome.
--
Laurent
-----
execline compat interface
-----
/* Compatibility */
#define pathexec_run(file, argv, envp) exec_ae(file, argv, envp)
#define pathexec0_run(file, argv, envp) exec0_ae(file, argv, envp)
#define xpathexec_run(file, argv, envp) xexec_ae(file, argv, envp)
#define xpathexec0_run(file, argv, envp) xexec0_ae(file, argv, envp)
#define pathexec_env(key, value) env_mexec(key, value)
#define pathexec_fromenv(argv, envp, envlen) mexec_f(argv, envp, envlen)
#define pathexec(argv) mexec(argv)
#define pathexec0(argv) mexec0(argv)
#define xpathexec_fromenv(argv, envp, envlen) xmexec_f(argv, envp, envlen)
#define xpathexec(argv) xmexec(argv)
#define xpathexec0(argv) xmexec0(argv)
#define pathexec_r_name(file, argv, envp, envlen, modif, modiflen) mexec_afm(file, argv, envp, envlen, modif, modiflen)
#define pathexec_r(argv, envp, envlen, modif, modiflen) mexec_fm(argv, envp, envlen, modif, modiflen)
#define xpathexec_r_name(file, argv, envp, envlen, modif, modiflen) xmexec_afm(file, argv, envp, envlen, modif, modiflen)
#define xpathexec_r(argv, envp, envlen, modif, modiflen) xmexec_fm(argv, envp, envlen, modif, modiflen)
#endif
copied from 18e4356557 (diff-69efbe5d997280a1430a6af2fa38e3f5105e706076a26fc751885c505ca598c6R140)
2021-01-23 12:16:41 +01:00
Markus Kowalewski
6dba41fbcb
mpi: use mpi attribute consistently as the default MPI implementations
...
Use the attribute mpi to provide a system wide default MPI
implementation. The default is openmpi (as before).
This now allows for overriding the MPI implentation by using
the overlay mechanism. Build all packages with mpich instead
of the default openmpi can now be achived like this:
self: super:
{
mpi = super.mpich;
}
All derivations that have been using "mpi ? null" to provide optional
building with MPI have been change in the following way to allow for
optional builds with MPI:
{ ...
, mpi
, useMpi ? false
}
2021-01-23 12:15:13 +01:00
R. RyanTM
04ee910d53
tridactyl-native: 1.20.3 -> 1.20.4
2021-01-23 10:36:17 +00:00
Doron Behar
f9c6e07c67
treewide: Remove usages of stdenv.lib by @doronbehar
...
Per: https://github.com/NixOS/nixpkgs/issues/108938
2021-01-23 10:52:19 +02:00
github-actions[bot]
8103cb9089
Merge staging-next into staging
2021-01-23 01:18:03 +00:00
github-actions[bot]
5b77726783
Merge master into staging-next
2021-01-23 01:17:59 +00:00
Mario Rodas
4766c5e8be
Merge pull request #110510 from r-ryantm/auto-update/nfpm
...
nfpm: 2.2.2 -> 2.2.3
2021-01-22 19:57:34 -05:00
Mario Rodas
d65c354710
Merge pull request #110528 from r-ryantm/auto-update/pgmetrics
...
pgmetrics: 1.10.3 -> 1.10.5
2021-01-22 19:57:04 -05:00
Maximilian Bosch
cf3130641a
Merge pull request #110097 from r-ryantm/auto-update/mdbook
...
mdbook: 0.4.5 -> 0.4.6
2021-01-22 23:15:03 +01:00
Sander van der Burg
3e385dc285
nodePackages: regenerate with node2nix 1.9.0
2021-01-22 22:42:58 +01:00
Maximilian Bosch
932d8850c8
Merge pull request #110372 from bbigras/httplz
...
httplz: dropping maintainership
2021-01-22 22:09:10 +01:00
Lancelot SIX
67000665dd
findutils: 4.7.0 -> 4.8.0
...
See https://lists.gnu.org/archive/html/info-gnu/2021-01/msg00008.html
for release announcement.
2021-01-22 21:36:59 +01:00
R. RyanTM
a1a23a0710
openresolv: 3.11.0 -> 3.12.0
2021-01-22 21:34:39 +01:00
R. RyanTM
1bb3240099
modemmanager: 1.14.8 -> 1.14.10
2021-01-22 21:32:24 +01:00
R. RyanTM
f2339096e7
lzip: 1.21 -> 1.22
2021-01-22 21:32:09 +01:00
Jörg Thalheim
fa521222a4
Merge pull request #110511 from r-ryantm/auto-update/nix-direnv
...
nix-direnv: 1.2 -> 1.2.1
2021-01-22 20:17:31 +00:00
R. RyanTM
da96664623
pgmetrics: 1.10.3 -> 1.10.5
2021-01-22 19:04:36 +00:00
github-actions[bot]
08c4f9056e
Merge staging-next into staging
2021-01-22 18:52:00 +00:00
github-actions[bot]
ff7c2d7009
Merge master into staging-next
2021-01-22 18:51:50 +00:00
R. RyanTM
e58c59c3dc
nix-direnv: 1.2 -> 1.2.1
2021-01-22 16:49:58 +00:00
R. RyanTM
52187ee4e5
nfpm: 2.2.2 -> 2.2.3
2021-01-22 16:39:59 +00:00
Sandro
070c76d434
Merge pull request #110480 from AndersonTorres/new-rcm
...
rcm: 1.1.3 -> 1.3.4
2021-01-22 16:44:35 +01:00
R. RyanTM
0eecc399df
minio-client: 2020-11-25T23-04-07Z -> 2021-01-16T02-45-34Z
2021-01-22 15:35:07 +00:00
Eelco Dolstra
b60a6af8ed
Merge pull request #110493 from hackworthltd/nix-big-sur
...
nix: add Security to build inputs.
2021-01-22 16:16:12 +01:00
Drew Hess
90888626ba
nix: add Security to build inputs.
...
For some reason, this is required to build nix on Big Sur, even though
it's not needed on earlier macOS versions.
2021-01-22 14:50:16 +00:00
zowoq
b929be75dc
fuse-overlayfs: 1.3.0 -> 1.4.0
...
https://github.com/containers/fuse-overlayfs/releases/tag/v1.4.0
2021-01-23 00:49:50 +10:00
Ryan Mulligan
3e733c2ae0
Merge pull request #110351 from r-ryantm/auto-update/exoscale-cli
...
exoscale-cli: 1.22.2 -> 1.23.0
2021-01-22 06:35:22 -08:00
R. RyanTM
74aa06982e
jump: 0.30.1 -> 0.40.0
2021-01-22 13:38:36 +00:00
AndersonTorres
3e61deb190
rcm: 1.1.3 -> 1.3.4
2021-01-22 10:27:48 -03:00
Sandro
a252b7e7a5
Merge pull request #109426 from poscat0x04/fcitx-update-script
2021-01-22 14:16:42 +01:00
github-actions[bot]
a5bbeb4fb1
Merge staging-next into staging
2021-01-22 12:43:02 +00:00
github-actions[bot]
211bccac79
Merge master into staging-next
2021-01-22 12:42:59 +00:00
Sandro
505681300b
Merge pull request #107717 from freezeboy/update-burpsuite
...
burpsuite: ease src override
2021-01-22 13:05:15 +01:00
Michael Weiss
588643a13d
lprof: Mark as broken
...
The Hydra build fails since 2020-07-28:
x86_64-linux: https://hydra.nixos.org/build/135234622
The patch was broken by eb627de968
but since there is no maintainer it
seems best to simply mark it as broken and eventually remove it.
2021-01-22 11:57:14 +01:00
Daniël de Kok
07dd1e81bb
Merge pull request #110371 from r-ryantm/auto-update/1password
...
_1password-gui: 0.9.8 -> 0.9.9-3
2021-01-22 09:48:46 +01:00
Matthias Beyer
e3b4a6c2d8
sfeed: init at 0.9.20 ( #107173 )
...
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-01-22 09:33:43 +01:00
Sandro
9a92886922
Merge pull request #110395 from zowoq/gemset
2021-01-22 09:31:07 +01:00
zowoq
153ad8bc1e
Merge staging-next into staging
2021-01-22 16:56:40 +10:00
github-actions[bot]
d40c5e1c8f
Merge master into staging-next
2021-01-22 06:44:59 +00:00
Poscat
bdf7a8aa8e
fcitx5-lua: remove unnecessary interpolation
2021-01-22 11:58:27 +08:00
Bruno Bigras
754d6347b6
tab-rs: 0.5.5 -> 0.5.6
2021-01-21 21:17:58 -05:00
github-actions[bot]
e48c1f8e8c
Merge staging-next into staging
2021-01-22 01:17:58 +00:00
github-actions[bot]
b30eaaf6b7
Merge master into staging-next
2021-01-22 01:17:55 +00:00
R. RyanTM
c959f84906
s3fs: 1.87 -> 1.88
2021-01-22 00:33:28 +00:00
zowoq
2ab13ca162
treewide: add final newline
2021-01-22 07:40:43 +10:00
zowoq
59b83c43e0
treewide: add final newline
2021-01-22 07:18:04 +10:00
R. RyanTM
36e3285c7b
disorderfs: 0.5.6 -> 0.5.11
2021-01-21 20:58:41 +00:00
Frank Doepper
5dd1286cfa
stenc: 1.0.7 -> 1.0.8
2021-01-21 20:49:15 +01:00
github-actions[bot]
27c8ef972c
Merge staging-next into staging
2021-01-21 18:51:36 +00:00
github-actions[bot]
7694c8cb5a
Merge master into staging-next
2021-01-21 18:51:33 +00:00
R. RyanTM
635154a7ac
assh: 2.10.0 -> 2.11.0 ( #109724 )
2021-01-21 10:08:38 -08:00
R. RyanTM
03a0224f4a
pbgopy: 0.2.0 -> 0.3.0 ( #110192 )
2021-01-21 09:55:25 -08:00
Bruno Bigras
d888b4d235
httplz: dropping maintainership
2021-01-21 12:53:46 -05:00
R. RyanTM
6c0a48f3bc
frp: 0.34.3 -> 0.35.0 ( #110358 )
2021-01-21 09:53:10 -08:00
R. RyanTM
938ad4b145
bettercap: 2.28 -> 2.29 ( #110327 )
2021-01-21 09:52:27 -08:00
R. RyanTM
ff40196b4c
_1password-gui: 0.9.8 -> 0.9.9-3
2021-01-21 17:45:57 +00:00
mohe2015
d44c6219b8
grub2: Properly disable zfs by default
2021-01-21 18:28:35 +01:00
Ryan Mulligan
515fcfe4a8
Merge pull request #110354 from r-ryantm/auto-update/fend
...
fend: 0.1.11 -> 0.1.13
2021-01-21 09:27:24 -08:00
Sandro
84229678d2
Merge pull request #110268 from marsam/update-vale
...
vale: 2.6.8 -> 2.8.1
2021-01-21 17:21:30 +01:00
R. RyanTM
d35953fc3c
fend: 0.1.11 -> 0.1.13
2021-01-21 15:15:25 +00:00
Florian Klink
126fb3c888
Merge pull request #68680 from arianvp/afterburn
...
afterburn: init at 4.6.0
2021-01-21 16:06:19 +01:00
R. RyanTM
35aac20463
exoscale-cli: 1.22.2 -> 1.23.0
2021-01-21 15:01:56 +00:00
Ryan Mulligan
215d637b86
Merge pull request #109867 from r-ryantm/auto-update/ior
...
ior: 3.2.1 -> 3.3.0
2021-01-21 06:55:34 -08:00
Ryan Mulligan
48e923959e
Merge pull request #110222 from r-ryantm/auto-update/phoronix-test-suite
...
phoronix-test-suite: 10.0.1 -> 10.2.0
2021-01-21 06:48:54 -08:00
Arian van Putten
4e57aa0ecc
afterburn: init at 4.6.0
2021-01-21 14:01:16 +01:00
github-actions[bot]
7d80106978
Merge staging-next into staging
2021-01-21 12:44:13 +00:00
github-actions[bot]
b8c9ed0b42
Merge master into staging-next
2021-01-21 12:44:09 +00:00
Doron Behar
8c2215be68
Merge pull request #110301 from bbigras/broot
...
broot: 1.1.10 -> 1.2.0
2021-01-21 14:00:04 +02:00
Bruno Bigras
af0415418e
signify: 25 -> 30
2021-01-21 05:49:15 -05:00
Janne Heß
e48b0ede04
asciidoc: 8.6.9 -> 9.0.4 ( #102398 )
...
Main motivation was to port it to Python3 which is due to #101964 .
So:
- Switch from asciidoc to asciidoc-py3
- Switch from Python 2 to Python 3
- This needs autoreconfHook now
- We also need to do some patching in a2x.py
- Switch to patchShebangs (more readable)
- Only input w3m if we actually build with it
2021-01-21 10:36:35 +00:00
Bruno Bigras
7d3c52356f
broot: 1.1.10 -> 1.2.0
2021-01-21 04:56:01 -05:00
Sandro
ae6fb64fb4
Merge pull request #107618 from fabaff/gitjacker
...
gitjacker: init at 0.0.2
2021-01-21 09:23:38 +01:00
Sandro
ad7347cfd4
Merge pull request #110227 from zowoq/gdu
...
gdu: 3.0.0 -> 4.2.0
2021-01-21 09:23:07 +01:00
Vladyslav M
6317796bec
Merge pull request #110203 from r-ryantm/auto-update/oxipng
...
oxipng: 4.0.2 -> 4.0.3
2021-01-21 09:02:17 +02:00
github-actions[bot]
df8b20163b
Merge staging-next into staging
2021-01-21 06:45:45 +00:00
github-actions[bot]
a6245e9bdf
Merge master into staging-next
2021-01-21 06:45:42 +00:00
Ryan Mulligan
b68a3e7906
Merge pull request #110088 from r-ryantm/auto-update/lynis
...
lynis: 3.0.1 -> 3.0.3
2021-01-20 21:32:13 -08:00
zowoq
932941b79c
treewide: editorconfig fixes
...
- remove trailing whitespace
- use spaces for indentation
2021-01-21 13:29:54 +10:00
Mario Rodas
762f665963
Merge pull request #110240 from r-ryantm/auto-update/powerline-go
...
powerline-go: 1.18.0 -> 1.20.0
2021-01-20 21:09:16 -05:00
github-actions[bot]
e5fef074d6
Merge staging-next into staging
2021-01-21 01:19:31 +00:00
github-actions[bot]
3617a771ca
Merge master into staging-next
2021-01-21 01:19:28 +00:00
Sandro
3837209e05
Merge pull request #105850 from r-ryantm/auto-update/bitwarden
...
bitwarden: 1.23.0 -> 1.23.1
2021-01-21 01:10:08 +01:00
R. RyanTM
2e258c1358
powerline-go: 1.18.0 -> 1.20.0
2021-01-20 23:50:13 +00:00
zowoq
8adc564f28
treewide: editorconfig fixes
...
- add final newline
- use spaces for indentation
2021-01-21 09:30:52 +10:00
Sandro
d2e5ecabd2
Merge pull request #109926 from r-ryantm/auto-update/chkrootkit
...
chkrootkit: 0.53 -> 0.54
2021-01-20 23:37:04 +01:00
Sandro
eebdf2427a
Merge pull request #110089 from r-ryantm/auto-update/monit
...
monit: 5.27.1 -> 5.27.2
2021-01-20 23:34:11 +01:00
Fabian Affolter
44f39b8420
gitjacker: init at 0.0.2
2021-01-20 23:22:31 +01:00
zowoq
620868fbdb
gdu: 3.0.0 -> 4.2.0
...
https://github.com/dundee/gdu/releases/tag/v4.0.0
https://github.com/dundee/gdu/releases/tag/v4.1.0
https://github.com/dundee/gdu/releases/tag/v4.2.0
2021-01-21 07:59:00 +10:00
Kevin Cox
f1d3b04c04
Merge pull request #109966 from thiagokokada/bump-opentabletdriver
...
opentabletdriver: 0.4.2 -> 0.5.0
2021-01-20 16:37:16 -05:00
R. RyanTM
d1468d9531
phoronix-test-suite: 10.0.1 -> 10.2.0
2021-01-20 21:09:08 +00:00
R. RyanTM
d8c6dbf7b6
plantuml: 1.2020.26 -> 1.2021.0
2021-01-20 20:55:45 +00:00
Sandro
56bf7a855c
Merge pull request #110204 from fabaff/sigurlx
...
sigurlx: init at 2.1.0
2021-01-20 21:10:54 +01:00
Sandro
809a698280
Merge pull request #110202 from llathasa-veleth/master
...
disfetch: 1.13 -> 1.14
2021-01-20 21:10:31 +01:00
Fabian Affolter
b54b344c61
sigurlx: init at 2.1.0
2021-01-20 20:40:33 +01:00
R. RyanTM
754bba41d1
oxipng: 4.0.2 -> 4.0.3
2021-01-20 19:32:25 +00:00
llathasa-veleth
92815bb5b7
disfetch: 1.13 -> 1.14
2021-01-20 22:26:15 +03:00
github-actions[bot]
49d7c98041
Merge staging-next into staging
2021-01-20 18:53:18 +00:00
github-actions[bot]
6b321782b8
Merge master into staging-next
2021-01-20 18:53:14 +00:00
Guillaume Girol
7a865aa59c
Merge pull request #109965 from r-ryantm/auto-update/kcollectd
...
kcollectd: 0.11.99.0 -> 0.12.0
2021-01-20 18:45:40 +00:00
Sandro
7eabc55c90
Merge pull request #110188 from Emantor/pkg/rauc
...
rauc: init at 1.5
2021-01-20 19:44:38 +01:00
Timo Kaufmann
458b655a3b
Merge pull request #109825 from timokau/home-manager-2021-01-16
...
home-manager: 2020-09-06 -> 2020-01-16
2021-01-20 19:20:55 +01:00
Oleksii Filonenko
9a1b21a39f
Merge pull request #110173 from r-ryantm/auto-update/onefetch
...
onefetch: 2.7.3 -> 2.9.1
2021-01-20 20:19:04 +02:00
Tim Steinbach
7a9a49110b
awscli: 1.18.216 -> 1.18.217
2021-01-20 12:36:55 -05:00
Rouven Czerwinski
1d260dad5a
rauc: init at 1.5
...
The Robust Auto Update Controller is an update program for embedded
systems. Primarily useful in NixOS for working with bundles.
2021-01-20 17:39:08 +01:00
Ryan Mulligan
3df16a48bf
Merge pull request #110043 from r-ryantm/auto-update/link-grammar
...
link-grammar: 5.8.0 -> 5.8.1
2021-01-20 07:31:42 -08:00
Ryan Mulligan
d55068d9e7
Merge pull request #110026 from r-ryantm/auto-update/kmon
...
kmon: 1.5.1 -> 1.5.3
2021-01-20 07:10:51 -08:00
Ryan Mulligan
aae8bc8b1c
Merge pull request #110085 from r-ryantm/auto-update/mergerfs
...
mergerfs: 2.32.0 -> 2.32.2
2021-01-20 06:33:44 -08:00
R. RyanTM
7d0d15be5a
onefetch: 2.7.3 -> 2.9.1
2021-01-20 14:19:35 +00:00
Peter Simons
62b407f001
Merge pull request #110128 from r-ryantm/auto-update/nbd
...
nbd: 3.20 -> 3.21
2021-01-20 15:11:59 +01:00
Sandro
9a3761b663
Merge pull request #106814 from freezeboy/unbreak-archi
...
archi: unbreak build
2021-01-20 14:40:11 +01:00
github-actions[bot]
77750c1f20
Merge staging-next into staging
2021-01-20 12:43:41 +00:00
github-actions[bot]
2ebca541c1
Merge master into staging-next
2021-01-20 12:43:38 +00:00
Sandro
82e84b9720
Merge pull request #110125 from sayanarijit/master
2021-01-20 13:34:56 +01:00
Sandro
6206c096e8
Merge pull request #110146 from NixOS/emplace-0.4.2
...
emplace: 0.4.1 -> 0.4.2
2021-01-20 13:31:57 +01:00
Sandro
3b48d6fabb
Merge pull request #110099 from fabaff/bump-msf
...
metasploit: 6.0.25 -> 6.0.26
2021-01-20 13:13:19 +01:00
Oleksii Filonenko
5bac1f61f0
Merge pull request #110084 from r-ryantm/auto-update/monolith
...
monolith: 2.3.1 -> 2.4.0
2021-01-20 13:56:40 +02:00
Oleksii Filonenko
4ac13b8bb2
emplace: 0.4.1 -> 0.4.2
2021-01-20 13:49:10 +02:00
Arijit Basu
f6818d97d7
openapi-generator-cli-unstable: 5.0.0-2020-02-04 -> 6.0.0-2021-01-18
2021-01-20 16:47:12 +05:30
R. RyanTM
5ec6b94e4c
nbd: 3.20 -> 3.21
2021-01-20 10:28:45 +00:00
Sandro
cb6adcda3c
Merge pull request #110019 from fabaff/pwdsafety
...
pwdsafety: init at 0.1.4
2021-01-20 11:14:16 +01:00
Arijit Basu
7bad7bce63
openapi-generator-cli: 4.3.1 -> 5.0.0
2021-01-20 15:39:01 +05:30
Jan Tojnar
db28fc965b
link-grammar: Improve
...
- Add meta.changelog
- Correct license
- Run tests
- Add quick smoke test to passthru.tests
2021-01-20 10:24:43 +01:00
SCOTT-HAMILTON
912c39a7ad
haste-client: replace bundlerEnv with cleaner bundlerApp
2021-01-20 00:49:41 -08:00
Fabian Affolter
6faef4ab0d
xortool: init at 1.0.0
2021-01-20 08:52:24 +01:00
Fabian Affolter
d1e12eb127
metasploit: 6.0.25 -> 6.0.26
2021-01-20 08:21:10 +01:00
R. RyanTM
2b40e55a1d
mdbook: 0.4.5 -> 0.4.6
2021-01-20 06:48:54 +00:00
github-actions[bot]
8f8d526926
Merge staging-next into staging
2021-01-20 06:46:54 +00:00
github-actions[bot]
addc839a0a
Merge master into staging-next
2021-01-20 06:46:51 +00:00
R. RyanTM
e4bbdba929
monit: 5.27.1 -> 5.27.2
2021-01-20 05:52:16 +00:00
R. RyanTM
1d6ebd3f20
lynis: 3.0.1 -> 3.0.3
2021-01-20 05:45:18 +00:00
R. RyanTM
b081f71d1c
mergerfs: 2.32.0 -> 2.32.2
2021-01-20 05:23:22 +00:00
R. RyanTM
6a1ed983ba
monolith: 2.3.1 -> 2.4.0
2021-01-20 05:19:53 +00:00
Mario Rodas
be8bcd9cdb
vale: 2.6.8 -> 2.8.1
2021-01-20 04:20:00 +00:00
Ryan Mulligan
55d92f3d78
Merge pull request #109937 from r-ryantm/auto-update/dpic
...
dpic: 2020.09.15 -> 2021.01.01
2021-01-19 18:53:25 -08:00
Ryan Mulligan
1681e5b3c4
Merge pull request #109845 from r-ryantm/auto-update/goreleaser
...
goreleaser: 0.149.0 -> 0.155.0
2021-01-19 18:22:53 -08:00
github-actions[bot]
b27f238893
Merge staging-next into staging
2021-01-20 01:20:12 +00:00
github-actions[bot]
ebdf4f426a
Merge master into staging-next
2021-01-20 01:20:09 +00:00
zowoq
5ab7a7ab45
uget-integrator: use spaces for indentation
2021-01-20 10:53:10 +10:00
zowoq
e75795a548
iceshelf: use spaces for indentation
2021-01-20 10:53:10 +10:00
R. RyanTM
dc912f45d7
link-grammar: 5.8.0 -> 5.8.1
2021-01-19 23:58:43 +00:00
zowoq
31f5dd3f36
treewide: editorconfig fixes
...
- remove trailing whitespace
- use spaces for indentation
2021-01-20 09:11:11 +10:00
Sandro
53b4872ff2
Merge pull request #110013 from fabaff/git-hound
...
git-hound: init at 1.3
2021-01-19 23:41:26 +01:00
R. RyanTM
f1baf7323a
kmon: 1.5.1 -> 1.5.3
2021-01-19 22:06:02 +00:00
Ryan Mulligan
db942b99ec
Merge pull request #109943 from r-ryantm/auto-update/diffstat
...
diffstat: 1.63 -> 1.64
2021-01-19 13:44:36 -08:00
Fabian Affolter
df75b21e73
pwdsafety: init at 0.1.4
2021-01-19 22:23:34 +01:00
Sandro
1ca55e5c3b
Merge pull request #110015 from fabaff/gitleaks
...
gitleaks: init at 7.2.0
2021-01-19 22:14:45 +01:00
Fabian Affolter
c1d1b478ff
git-hound: init at 1.3
2021-01-19 21:57:12 +01:00
Fabian Affolter
84634ff0c3
gitleaks: init at 7.2.0
2021-01-19 21:56:03 +01:00
Fabian Affolter
90009b078b
metasploit: 6.0.12 -> 6.0.25
2021-01-19 20:58:38 +01:00
Stig Palmquist
cecd2c8362
dnsmasq: 2.82 -> 2.83, pname + version
...
CVEs:
CVE-2020-25681
CVE-2020-25682
CVE-2020-25683
CVE-2020-25687
CVE-2020-25684
CVE-2020-25685
CVE-2020-25686
2021-01-19 20:21:49 +01:00
Ryan Mulligan
da25268ca2
Merge pull request #109993 from r-ryantm/auto-update/latex2html
...
latex2html: 2020.2 -> 2021
2021-01-19 11:05:59 -08:00
github-actions[bot]
e064950cb7
Merge staging-next into staging
2021-01-19 18:52:27 +00:00
Sandro
f591395492
Merge pull request #108319 from KaiHa/pr/nitrokey-app-1.4.2
2021-01-19 19:20:35 +01:00
R. RyanTM
5821cd7c06
latex2html: 2020.2 -> 2021
2021-01-19 18:02:08 +00:00
Michele Guerini Rocco
ff8f0f79a7
Merge pull request #109922 from r-ryantm/auto-update/bup
...
bup: 0.31 -> 0.32
2021-01-19 18:36:26 +01:00
Sandro
337b3f9022
Merge pull request #109649 from berberman/fix-fcitx5
2021-01-19 18:34:43 +01:00
Thiago Kenji Okada
313ee6bd96
opentabletdriver: 0.4.2 -> 0.5.0
2021-01-19 14:05:48 -03:00
Ryan Mulligan
f1d169fe60
Merge pull request #109982 from r-ryantm/auto-update/java-service-wrapper
...
java-service-wrapper: 3.5.43 -> 3.5.45
2021-01-19 08:46:19 -08:00
R. RyanTM
4c2363851f
java-service-wrapper: 3.5.43 -> 3.5.45
2021-01-19 16:21:09 +00:00
Sandro
1e5e5bdf34
Merge pull request #109562 from leungbk/graph-cli
2021-01-19 16:54:33 +01:00
Sandro
dbb7804073
Merge pull request #109736 from ymarkus/rpi-imager
...
rpi-imager: init at 1.5
2021-01-19 16:32:24 +01:00
Thiago Kenji Okada
98873022d4
opentabletdriver: improve update.sh script
...
Allow it to update deb package sha256 automatically.
2021-01-19 11:41:17 -03:00
R. RyanTM
8605813232
kcollectd: 0.11.99.0 -> 0.12.0
2021-01-19 14:33:36 +00:00
Sandro
28ba03ae72
Merge pull request #109912 from fabaff/bump-gandi
...
gandi-cli: 1.5 -> 1.6
2021-01-19 15:16:54 +01:00
Sandro
f920653ba0
Merge pull request #109905 from r-ryantm/auto-update/angle-grinder
2021-01-19 15:01:05 +01:00
Sandro
a68cdb525e
Merge pull request #109888 from zakame/updates/bpytop-1.0.59
...
bpytop: 1.0.50 -> 1.0.59
2021-01-19 14:47:37 +01:00
Sandro
ec3c0d8360
Merge pull request #109865 from r-ryantm/auto-update/igmpproxy
...
igmpproxy: 0.2.1 -> 0.3
2021-01-19 14:42:18 +01:00
Sandro
abcd2c1cda
Merge pull request #109858 from r-ryantm/auto-update/hebcal
...
hebcal: 4.22 -> 4.24
2021-01-19 14:38:01 +01:00
Yannick Markus
956f1a8e71
rpi-imager: init at 1.5
2021-01-19 14:35:45 +01:00
Sandro
a0e6e14c44
Merge pull request #109091 from fabaff/enum
...
enum4linux-ng: init at 1.0.0
2021-01-19 14:16:43 +01:00
José Romildo Malaquias
6bc77f6fd4
Merge pull request #109900 from r-ryantm/auto-update/blueberry
...
blueberry: 1.4.0 -> 1.4.2
2021-01-19 10:13:12 -03:00
Jan Tojnar
fc7bd322df
Merge branch 'staging-next' into staging
2021-01-19 13:50:04 +01:00
Sandro
7de82fbe61
Merge pull request #94097 from svend/dual-function-keys
2021-01-19 13:41:19 +01:00
Mario Rodas
31df8e4353
Merge pull request #109933 from r-ryantm/auto-update/cargo-release
...
cargo-release: 0.13.8 -> 0.13.10
2021-01-19 06:53:19 -05:00
Mario Rodas
93171dde69
Merge pull request #109886 from r-ryantm/auto-update/2fa
...
go-2fa: 1.1.0 -> 1.2.0
2021-01-19 06:41:22 -05:00
Mario Rodas
6725a72a3c
Merge pull request #109936 from r-ryantm/auto-update/eksctl
...
eksctl: 0.35.0 -> 0.36.0
2021-01-19 06:39:35 -05:00
Sandro
6898046c31
Merge pull request #109667 from fabaff/censys
2021-01-19 12:32:45 +01:00
Potato Hatsue
a6123808cc
fcitx5-with-addons: remove unnecessary qtbase from buildInputs
2021-01-19 19:30:04 +08:00
Potato Hatsue
9e58c856a0
fcitx5-with-addons: symlink .desktop to autostart
...
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-01-19 19:30:04 +08:00
Potato Hatsue
61615cc4ea
fcitx5-with-addons: patch .desktop files
2021-01-19 19:30:04 +08:00
Potato Hatsue
9509da46e7
fcitx5-qt: fix missing libfcitx5platforminputcontextplugin.so
2021-01-19 19:30:03 +08:00
R. RyanTM
a196b0c291
diffstat: 1.63 -> 1.64
2021-01-19 11:24:55 +00:00
Sandro
1b3176b659
Merge pull request #107054 from SFrijters/xdg-utils-unstable
...
xdg_utils: 1.1.3 -> unstable-2020-10-21
2021-01-19 12:07:19 +01:00
Fabian Affolter
796676e6ac
go-cve-search: init at 0.1.3
2021-01-19 11:59:43 +01:00
Sandro
aef7b0b560
Merge pull request #109851 from r-ryantm/auto-update/govc
...
govc: 0.23.1 -> 0.24.0
2021-01-19 11:58:30 +01:00
Sandro
8f27bfc66f
Merge pull request #109852 from fabaff/sshchecker
...
sshchecker: init at 1.0
2021-01-19 11:58:14 +01:00
R. RyanTM
1771e8810e
dpic: 2020.09.15 -> 2021.01.01
2021-01-19 10:44:27 +00:00
R. RyanTM
3d4bd8b8c5
eksctl: 0.35.0 -> 0.36.0
2021-01-19 10:40:19 +00:00
R. RyanTM
c37e8d19e3
cargo-release: 0.13.8 -> 0.13.10
2021-01-19 10:21:47 +00:00
Sandro
a9d9130b7d
Merge pull request #109854 from r-ryantm/auto-update/grpcurl
...
grpcurl: 1.7.0 -> 1.8.0
2021-01-19 11:20:42 +01:00
Michael Raskin
2d91ad963f
Merge pull request #109916 from r-ryantm/auto-update/btrfs-progs
...
btrfs-progs: 5.9 -> 5.10
2021-01-19 09:31:14 +00:00
R. RyanTM
1510391b92
chkrootkit: 0.53 -> 0.54
2021-01-19 09:23:00 +00:00
Jonathan Ringer
9bb3fccb5b
treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
...
continuation of #109595
pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.
python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00
R. RyanTM
f020af824d
bup: 0.31 -> 0.32
2021-01-19 08:25:00 +00:00
R. RyanTM
5dc5cd4e13
btrfs-progs: 5.9 -> 5.10
2021-01-19 08:00:10 +00:00
Fabian Affolter
2f9d71e05c
gandi-cli: 1.5 -> 1.6
2021-01-19 08:11:04 +01:00
github-actions[bot]
4f6b8a3611
Merge staging-next into staging
2021-01-19 06:43:37 +00:00
R. RyanTM
1b0e552fad
angle-grinder: 0.15.0 -> 0.16
2021-01-19 06:35:38 +00:00
R. RyanTM
1e2cd67fe9
blueberry: 1.4.0 -> 1.4.2
2021-01-19 05:45:26 +00:00
R. RyanTM
ef998c2bda
acme-client: 1.0.1 -> 1.1.0
2021-01-19 05:17:44 +00:00
Svend Sorensen
ea7e4b3486
Apply suggestions from code review
...
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-01-18 19:30:22 -08:00
Zak B. Elep
cbff1ad157
bpytop: 1.0.50 -> 1.0.59
2021-01-19 11:18:23 +08:00
Mario Rodas
cf07f8d15d
Merge pull request #109668 from marsam/update-mcfly
...
mcfly: 0.5.2 -> 0.5.3
2021-01-18 22:06:08 -05:00
R. RyanTM
a27f0df8dc
go-2fa: 1.1.0 -> 1.2.0
2021-01-19 02:57:51 +00:00
Ryan Mulligan
694cadc3c2
Merge pull request #109862 from r-ryantm/auto-update/htop
...
htop: 3.0.4 -> 3.0.5
2021-01-18 18:23:33 -08:00
github-actions[bot]
e8a1f18e58
Merge staging-next into staging
2021-01-19 01:18:25 +00:00
Ryan Mulligan
66552e6b3c
Merge pull request #109743 from r-ryantm/auto-update/cassowary
...
cassowary: 0.11.0 -> 0.12.0
2021-01-18 17:08:44 -08:00
R. RyanTM
a404cf946e
ior: 3.2.1 -> 3.3.0
2021-01-19 00:57:49 +00:00
R. RyanTM
83370b5920
igmpproxy: 0.2.1 -> 0.3
2021-01-19 00:39:30 +00:00
R. RyanTM
69a7b210b0
htop: 3.0.4 -> 3.0.5
2021-01-19 00:16:59 +00:00
R. RyanTM
0e1dedba4b
hebcal: 4.22 -> 4.24
2021-01-19 00:01:27 +00:00
R. RyanTM
992e993555
grpcurl: 1.7.0 -> 1.8.0
2021-01-18 23:38:47 +00:00
Ryan Mulligan
fa69132803
Merge pull request #109846 from r-ryantm/auto-update/gospider
...
gospider: 1.1.4 -> 1.1.5
2021-01-18 15:30:23 -08:00
R. RyanTM
a3f323bab7
govc: 0.23.1 -> 0.24.0
2021-01-18 23:24:21 +00:00
Fabian Affolter
f9b4fd0ec5
sshchecker: init at 1.0
2021-01-19 00:19:57 +01:00
R. RyanTM
c8f43281d1
gospider: 1.1.4 -> 1.1.5
2021-01-18 22:53:47 +00:00
R. RyanTM
126463c378
goreleaser: 0.149.0 -> 0.155.0
2021-01-18 22:45:54 +00:00
Oleksii Filonenko
c3016f226a
Merge pull request #109790 from r-ryantm/auto-update/emplace
...
emplace: 0.3.9 -> 0.4.1
2021-01-19 00:36:39 +02:00
Sandro
55e030a895
Merge pull request #109827 from fabaff/corsmisc
2021-01-18 23:20:38 +01:00
Sandro
4773a2675b
Merge pull request #109820 from fabaff/bypass403
...
bypass403: init at 1.4.0
2021-01-18 23:20:22 +01:00
Sandro
835e90eb1b
Merge pull request #109828 from r-ryantm/auto-update/gifski
...
gifski: 1.2.4 -> 1.2.6
2021-01-18 22:58:21 +01:00
Sandro
b68e28e4a7
Merge pull request #109823 from r-ryantm/auto-update/gammy
...
gammy: 0.9.59 -> 0.9.62
2021-01-18 22:55:44 +01:00
R. RyanTM
1baed4e015
gifski: 1.2.4 -> 1.2.6
2021-01-18 21:16:28 +00:00
Fabian Affolter
fa13bc320a
corsmisc: init at 1.3.0
2021-01-18 22:09:15 +01:00
Timo Kaufmann
e8d4683909
home-manager: 2020-09-06 -> 2020-01-16
...
It has been a while since the last update. This includes some new
features [1] and at least one compatibility fix [2].
[1] 73506f947c/modules/misc/news.nix (L1653)
[2] https://github.com/nix-community/home-manager/pull/1703
2021-01-18 22:05:50 +01:00
R. RyanTM
580dd1b6fb
gammy: 0.9.59 -> 0.9.62
2021-01-18 20:57:33 +00:00
Sandro
6dfa72b172
Merge pull request #106910 from freezeboy/change-ssh-ident
...
ssh-ident: change PATH
2021-01-18 21:38:47 +01:00
Fabian Affolter
30cdf00e36
bypass403: init at 1.4.0
2021-01-18 21:35:01 +01:00
Christian Kampka
f0ec10a829
treewide: remove kampka as maintainer ( #109813 )
2021-01-18 21:23:49 +01:00
Sandro
4396baf04e
Merge pull request #106876 from antifuchs/fix-mosh-client-path
...
mosh: Hermeticize mosh-client path reference from mosh.pl
2021-01-18 20:47:11 +01:00
Sandro
3ddcd4144b
Merge pull request #106542 from r-ryantm/auto-update/bitwarden_rs-vault
...
bitwarden_rs-vault: 2.16.1 -> 2.17.1
2021-01-18 20:13:47 +01:00
github-actions[bot]
9f3193a9ee
Merge staging-next into staging
2021-01-18 18:51:57 +00:00
Sandro
547956a240
Merge pull request #109803 from r-ryantm/auto-update/findomain
...
findomain: 2.1.4 -> 2.1.5
2021-01-18 19:02:17 +01:00
freezeboy
3cac3df724
ssh-ident: change PATH
...
The wrapper is not working anymore, so the ssh-agent is no more shared,
as the script removes the environment PATH variable, I pinned the
ssh-agent binary and removed the wrapper.
Also, as this script doesn't require a compiler, I switched from stdenv
to stdenvNoCC.
2021-01-18 18:33:48 +01:00
R. RyanTM
835e89a4cd
findomain: 2.1.4 -> 2.1.5
2021-01-18 17:32:56 +00:00
Sandro
16ed288e28
Merge pull request #109778 from cpcloud/update-pulumi
...
pulumi-bin: 2.17.0 -> 2.17.2
2021-01-18 18:07:36 +01:00
Sandro
336fa74c2d
Merge pull request #109799 from r-ryantm/auto-update/exoscale-cli
...
exoscale-cli: 1.22.0 -> 1.22.2
2021-01-18 18:06:58 +01:00
Sandro
0dfe3152b6
Merge pull request #109782 from r-ryantm/auto-update/dua
...
dua: 2.10.5 -> 2.10.9
2021-01-18 17:44:03 +01:00
Sandro
d3836db370
Merge pull request #109777 from r-ryantm/auto-update/doppler
...
doppler: 3.19.0 -> 3.21.0
2021-01-18 17:42:08 +01:00
Sandro
1699750907
Merge pull request #109773 from r-ryantm/auto-update/dnscrypt-proxy2
...
dnscrypt-proxy2: 2.0.44 -> 2.0.45
2021-01-18 17:35:21 +01:00
Sandro
b387000c20
Merge pull request #109774 from r-ryantm/auto-update/dnsproxy
...
dnsproxy: 0.33.3 -> 0.33.8
2021-01-18 17:35:06 +01:00
Sandro
c3cd24e72d
Merge pull request #109763 from r-ryantm/auto-update/croc
...
croc: 8.6.6 -> 8.6.7
2021-01-18 17:32:15 +01:00
R. RyanTM
ddc68ebda5
exoscale-cli: 1.22.0 -> 1.22.2
2021-01-18 16:30:20 +00:00
Silvan Mosberger
40762d37a8
Merge pull request #109781 from r-ryantm/auto-update/du-dust
...
du-dust: 0.5.3 -> 0.5.4
2021-01-18 16:45:23 +01:00
R. RyanTM
f969aa0faa
emplace: 0.3.9 -> 0.4.1
2021-01-18 15:44:28 +00:00
Stefan Frijters
e4e6537234
xdg_utils: 1.1.3 -> unstable-2020-10-21
...
There has not been an official release for a long time, but
new features and fixes are available
2021-01-18 16:22:51 +01:00
R. RyanTM
c514b2dc3c
dua: 2.10.5 -> 2.10.9
2021-01-18 15:08:37 +00:00
R. RyanTM
d4fc41099e
du-dust: 0.5.3 -> 0.5.4
2021-01-18 15:04:04 +00:00
Phillip Cloud
c42d935fb1
pulumi-bin: 2.17.0 -> 2.17.2
2021-01-18 09:51:36 -05:00
R. RyanTM
35d5f2ebed
doppler: 3.19.0 -> 3.21.0
2021-01-18 14:51:06 +00:00
R. RyanTM
eb4bd5c119
dnsproxy: 0.33.3 -> 0.33.8
2021-01-18 14:39:35 +00:00
R. RyanTM
f3c23b78a3
dnscrypt-proxy2: 2.0.44 -> 2.0.45
2021-01-18 14:35:56 +00:00
Tim Steinbach
90b687e110
awscli: 1.18.215 -> 1.18.216
2021-01-18 09:23:58 -05:00
Ryan Mulligan
53624a884d
Merge pull request #109762 from r-ryantm/auto-update/cri-tools
...
cri-tools: 1.19.0 -> 1.20.0
2021-01-18 06:11:35 -08:00
R. RyanTM
d359c75336
croc: 8.6.6 -> 8.6.7
2021-01-18 13:56:58 +00:00
R. RyanTM
2049796e56
cri-tools: 1.19.0 -> 1.20.0
2021-01-18 13:51:13 +00:00
Sandro
1ab634ebdc
Merge pull request #109749 from r-ryantm/auto-update/chezmoi
...
chezmoi: 1.8.9 -> 1.8.10
2021-01-18 14:29:19 +01:00
Sandro
886953961e
Merge pull request #109751 from r-ryantm/auto-update/clash
...
clash: 1.3.0 -> 1.3.5
2021-01-18 14:28:37 +01:00
Sandro
baf9e277a4
Merge pull request #98545 from Flakebi/spirv-cross
...
spirv-cross: 2020-06-29 -> 2020-09-17
2021-01-18 14:17:15 +01:00
Sandro
43dbe13483
Merge pull request #98464 from mpoquet/i3nator-init-1.2.0
...
i3nator: init at 1.2.0
2021-01-18 14:15:15 +01:00
R. RyanTM
18be49957e
clash: 1.3.0 -> 1.3.5
2021-01-18 13:07:06 +00:00
Sandro
0939b6d2e0
Merge pull request #96536 from SCOTT-HAMILTON/haste-client
...
haste-client: Init at 0.2.3
2021-01-18 14:04:31 +01:00
R. RyanTM
3f859fcec9
chezmoi: 1.8.9 -> 1.8.10
2021-01-18 12:57:06 +00:00
github-actions[bot]
4b0e1b22cf
Merge staging-next into staging
2021-01-18 12:42:12 +00:00
R. RyanTM
ac98736ee4
cassowary: 0.11.0 -> 0.12.0
2021-01-18 12:09:21 +00:00
Sandro
d636b259d6
Merge pull request #109726 from r-ryantm/auto-update/atomicparsley
...
atomicparsley: 20200701.154658.b0d6223 -> 20210114.184825.1dbe1be
2021-01-18 12:05:58 +01:00
Sandro
0bddeef882
Merge pull request #109727 from r-ryantm/auto-update/aws-okta
...
aws-okta: 1.0.8 -> 1.0.11
2021-01-18 11:56:30 +01:00
Sandro
b11e860030
Merge pull request #109728 from r-ryantm/auto-update/awsweeper
...
awsweeper: 0.10.2 -> 0.11.1
2021-01-18 11:56:14 +01:00
R. RyanTM
8cde8bb11d
awsweeper: 0.10.2 -> 0.11.1
2021-01-18 10:34:01 +00:00
R. RyanTM
f7ecd2984b
aws-okta: 1.0.8 -> 1.0.11
2021-01-18 10:28:24 +00:00
R. RyanTM
9af9718ccb
atomicparsley: 20200701.154658.b0d6223 -> 20210114.184825.1dbe1be
2021-01-18 10:18:33 +00:00
Fabian Affolter
e29d45b44d
scilla: init at 20210118-74dd814
2021-01-18 10:12:00 +01:00
Fabian Affolter
9df436f7a0
enum4linux-ng: init at 1.0.0
2021-01-18 09:50:26 +01:00
freezeboy
955e258c05
burpsuite: change derivtion to ease src overriding
2021-01-18 09:12:27 +01:00
Fabian Affolter
0bd552d791
theHarvester: 3.1 -> 3.2.2
2021-01-18 07:49:46 +01:00
github-actions[bot]
22e408d5f1
Merge staging-next into staging
2021-01-18 06:42:39 +00:00
github-actions[bot]
ef2abc20bc
Merge master into staging-next
2021-01-18 06:42:35 +00:00
Kai Harries
d27be236f1
nitrokey-app: 1.3.2 -> 1.4.2
...
The optional argument group was removed because it is no longer used
in the udev-rules that come with the libnitrokey.
2021-01-18 07:36:44 +01:00
zowoq
cd9256a288
gdu: 2.3.0 -> 3.0.0
...
https://github.com/dundee/gdu/releases/tag/v3.0.0
2021-01-18 13:44:19 +10:00
zowoq
d93966200c
Merge staging-next into staging
2021-01-18 13:03:13 +10:00
github-actions[bot]
b7f20dcd02
Merge master into staging-next
2021-01-18 01:16:03 +00:00
Brian Leung
dcfc3b1d22
graph-cli: init at 0.1.7
...
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-01-17 16:28:57 -08:00
Sandro
4a8e102b4f
Merge pull request #107921 from fabaff/evillimiter
...
evillimiter: init at 1.5.0
2021-01-18 01:16:39 +01:00
Sandro
3337ef145a
Merge pull request #107912 from fabaff/aiodnsbrute
...
aiodnsbrute: init at 0.3.2
2021-01-18 01:11:52 +01:00
eropleco
822e677f0a
smartmontools: 7.1 -> 7.2 and devicedb updated to latest ( #109566 )
...
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-01-18 00:09:10 +01:00
github-actions[bot]
f4f60c7cee
Merge staging-next into staging
2021-01-17 18:50:37 +00:00
github-actions[bot]
4bdb892722
Merge master into staging-next
2021-01-17 18:50:34 +00:00
Sandro
e53c43bebb
Merge pull request #109567 from dali99/add_metapixel
...
metapixel: init at 1.0.2
2021-01-17 19:49:11 +01:00
Sandro
d4d7440bcc
Merge pull request #108701 from fabaff/cantoolz
2021-01-17 19:46:21 +01:00
Sandro
9ecaa3ce76
Merge pull request #107227 from vq/add/lxi-tools
...
lxi-tools: init at 1.21
2021-01-17 19:45:47 +01:00
Jörg Thalheim
57d863b1f0
Merge remote-tracking branch 'upstream/staging-next' into HEAD
2021-01-17 18:09:56 +01:00
Jörg Thalheim
1279bf812c
Merge remote-tracking branch 'upstream/master' into HEAD
2021-01-17 18:08:59 +01:00
Ben Siraphob
d6aeae8f90
pkgs/tools: pkgconfig -> pkg-config (2)
2021-01-17 23:27:27 +07:00
Guillaume Girol
979e6e67d3
Merge pull request #96762 from kampka/source-highlight
...
source-highlight: Skip building docs when cross-compiling
2021-01-17 16:03:35 +00:00
Sandro
4e292b04af
Merge pull request #109632 from siraben/stdenv-lib-2
2021-01-17 16:29:40 +01:00
Sandro
d4682547f8
Merge pull request #109587 from LeSuisse/djvu2pdf-fix-broken-homepage-url
...
djvu2pdf: fix broken homepage URL
2021-01-17 16:27:09 +01:00
Daniel Olsen
a67d49dfef
metapixel: init at 1.0.2
2021-01-17 15:44:27 +01:00
Ben Siraphob
d1852aca3c
pkgs/tools, pkgs/applications: [sS]tdenv.*lib -> lib
2021-01-17 20:59:15 +07:00
Sandro
055fa3a647
Merge pull request #109606 from fabaff/bump-amass
...
amass: 3.10.5 -> 3.11.1
2021-01-17 14:14:43 +01:00
Sandro
17830a521a
Merge pull request #109593 from Wulfsta/psw
...
psw: 0.1.2 -> 0.2.0
2021-01-17 14:13:49 +01:00
Sandro
73f1ed5f4b
Merge pull request #109610 from raboof/reckon-0.4.4-to-0.6.0
...
reckon: 0.4.4 -> 0.6.0
2021-01-17 14:12:03 +01:00
Sandro
ff9a7c6dc1
Merge pull request #109549 from LeSuisse/bursuite-2020.12.1
...
burpsuite: 2020.1 -> 2020.12.1
2021-01-17 13:40:34 +01:00
github-actions[bot]
3de5f8be30
Merge staging-next into staging
2021-01-17 12:38:53 +00:00
github-actions[bot]
9541eb734d
Merge master into staging-next
2021-01-17 12:38:49 +00:00
Daniel Nilsson
143091fae6
lxi-tools: init at 1.21
...
Apply suggestions from code review
Co-authored-by: Ivar <41924494+IvarWithoutBones@users.noreply.github.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-01-17 12:27:36 +01:00
Sandro
4a2481f0c7
Merge pull request #109570 from marsam/update-peco
...
peco: 0.5.3 -> 0.5.8
2021-01-17 11:53:03 +01:00
Fabian Affolter
a79ef12d0b
cantoolz: init at 3.7.0
2021-01-17 11:40:49 +01:00
Thomas Gerbet
7d886df96d
djvu2pdf: fix broken homepage URL
...
Also updated to the appropriate license.
2021-01-17 11:12:52 +01:00
Sandro
e399e5fa8d
Merge pull request #109597 from austinbutler/extrafiles-lib-fix
...
beats: fix missing lib in extrafiles plugin
2021-01-17 10:27:04 +01:00
Mario Rodas
faed1fc0eb
Merge pull request #109601 from cole-h/age
...
age: 1.0.0-beta5 -> 1.0.0-beta6
2021-01-17 04:18:38 -05:00
Arnout Engelen
f60ce0313d
reckon: 0.4.4 -> 0.6.0
2021-01-17 10:03:10 +01:00
Fabian Affolter
6db50a0943
amass: 3.10.5 -> 3.11.1
2021-01-17 09:44:04 +01:00
Ben Siraphob
76f93cc731
pkgs/tools: pkgconfig -> pkg-config
2021-01-16 23:49:59 -08:00
Cole Helbling
a018f7c35d
age: 1.0.0-beta5 -> 1.0.0-beta6
...
https://github.com/FiloSottile/age/compare/v1.0.0-beta5...v1.0.0-beta6
2021-01-16 21:34:23 -08:00
Jan Tojnar
643a72b4f1
Merge branch 'staging-next' into staging
2021-01-17 05:52:43 +01:00
Jan Tojnar
e6f926d910
Merge branch 'master' into staging-next
2021-01-17 05:52:23 +01:00
Mario Rodas
9483d11a4c
mcfly: 0.5.2 -> 0.5.3
2021-01-17 04:20:00 +00:00
Mario Rodas
bdbbd013bd
psw: enable on darwin
2021-01-17 04:20:00 +00:00
Austin Butler
1e72aa1feb
beats: fix missing lib in extrafiles plugin
2021-01-16 19:15:03 -08:00
Wulfsta
727cb67dfb
psw: 0.1.2 -> 0.2.0
2021-01-16 19:54:36 -05:00
Michael Weiss
a6d138c7ad
Merge pull request #109405 from primeos/ffmpeg-full-disable-rav1e
...
ffmpeg-full: disable rav1e by default (in favor of svt-av1)
2021-01-16 20:35:27 +01:00
Mario Rodas
2476f4aa21
Merge pull request #109558 from jojosch/mycli-1.23.2
...
mycli: 1.23.0 -> 1.23.2
2021-01-16 14:17:24 -05:00
Mario Rodas
b30f0e0ad4
Merge pull request #109524 from dotlambda/routino-3.3.3
...
routino: 3.3.2 -> 3.3.3
2021-01-16 14:16:38 -05:00
Sandro Jäckel
ea6ae87eed
pythonPackages.swaglyrics: Fix dependencies
2021-01-16 10:56:42 -08:00
github-actions[bot]
ac253c6eed
Merge staging-next into staging
2021-01-16 18:51:11 +00:00
github-actions[bot]
f46cb85082
Merge master into staging-next
2021-01-16 18:51:05 +00:00
Johannes Schleifenbaum
cda449e23c
mycli: 1.23.0 -> 1.23.2
2021-01-16 19:26:01 +01:00
Thomas Gerbet
2c29f2ad85
burpsuite: 2020.1 -> 2020.12.1
...
Moved to Java 11 to avoid warnings when launching Burp Suite.
Burp Suite only officially supports Java versions 9 to 14 [0].
[0] https://portswigger.net/burp/documentation/desktop/getting-started/launching/command-line#checking-your-java-version
2021-01-16 17:39:16 +01:00
Jörg Thalheim
d8d06d1cec
Merge pull request #109455 from siraben/remove-stdenv-lib
2021-01-16 16:17:07 +00:00
Sandro
1fb0c48cf2
Merge pull request #107759 from mweinelt/kea
...
kea: 1.5.0-P1 -> 1.8.2
2021-01-16 16:04:58 +01:00
Robert Schütz
bb971b16de
routino: 3.3.2 -> 3.3.3
2021-01-16 13:54:00 +01:00
github-actions[bot]
00577aef99
Merge staging-next into staging
2021-01-16 12:40:08 +00:00
github-actions[bot]
2445824f40
Merge master into staging-next
2021-01-16 12:40:04 +00:00
Ben Siraphob
badf51221d
treewide: stdenv.lib -> lib
2021-01-16 17:58:11 +07:00
Sandro
046e4edfce
Merge pull request #109502 from danieldk/1password-gui-0.9.8
...
_1password-gui: 0.9.7 -> 0.9.8
2021-01-16 11:40:25 +01:00
Sandro
a9bb54359e
Merge pull request #108099 from siraben/double-quotes-fix
2021-01-16 11:27:58 +01:00
Daniël de Kok
20566f7d63
_1password-gui: 0.9.7 -> 0.9.8
...
Release notes:
https://releases.1password.com/linux/0.9/#1password-for-linux-0.9.8
2021-01-16 10:36:23 +01:00
R. RyanTM
bcdca92787
abcmidi: 2020.11.07 -> 2020.12.10 ( #106639 )
2021-01-16 09:52:53 +01:00
github-actions[bot]
72a465f835
Merge staging-next into staging
2021-01-16 06:41:38 +00:00
github-actions[bot]
c435fdab0a
Merge master into staging-next
2021-01-16 06:41:35 +00:00
Poscat
e5d652a32d
fcitx5-table-other: 5.0.1 -> 5.0.2
2021-01-16 13:16:40 +08:00
Poscat
b46049c09a
fcitx5-table-extra: 5.0.1 -> 5.0.2
2021-01-16 13:16:39 +08:00
Poscat
f0766ab3ae
fcitx5-chinese-addons: 5.0.2 -> 5.0.3
2021-01-16 13:16:38 +08:00
Poscat
1d89ec0c2c
fcitx5-rime: 5.0.2 -> 5.0.3
2021-01-16 13:16:37 +08:00
Poscat
c2de5a5f61
fcitx5-lua: 5.0.1 -> 5.0.2
2021-01-16 13:16:36 +08:00
Poscat
eb6007055d
fcitx5-configtool: 5.0.1 -> 5.0.2
2021-01-16 13:16:33 +08:00
Poscat
937ea70a98
libsForQt5.fcitx5-qt: 5.0.1 -> 5.0.2
2021-01-16 13:16:20 +08:00
Poscat
15f2be29d6
fcitx5-gtk: 5.0.1 -> 5.0.3
2021-01-16 13:16:09 +08:00
Ben Siraphob
8dd78bb4fb
treewide: fix double quoted strings in meta.description
2021-01-16 11:29:30 +07:00
Mario Rodas
568424435a
peco: 0.5.3 -> 0.5.8
2021-01-16 04:20:00 +00:00
Poscat
c0e0b52174
fcitx5: 5.0.3 -> 5.0.4
2021-01-16 12:02:54 +08:00
Poscat
13f5c8013f
Add an update script for fcitx packages
2021-01-16 12:02:43 +08:00
zowoq
11434e2040
youtube-dl: 2021.01.08 -> 2021.01.16
...
https://github.com/ytdl-org/youtube-dl/releases/tag/2021.01.16
2021-01-16 12:56:23 +10:00
github-actions[bot]
c1f25cbece
Merge staging-next into staging
2021-01-15 18:53:00 +00:00
github-actions[bot]
3269d4d3a3
Merge master into staging-next
2021-01-15 18:52:54 +00:00
Sandro
36ff80b7c8
Merge pull request #109445 from iAmMrinal0/update/google-cloud-sdk
...
google-cloud-sdk: 322.0.0 -> 323.0.0
2021-01-15 18:34:14 +01:00
Sandro
0eb69dab67
Merge pull request #109446 from jojosch/mycli-1.23.0
...
mycli: 1.22.2 -> 1.23.0
2021-01-15 18:33:03 +01:00
Jan Tojnar
e03806bc45
Merge branch 'staging-next' into staging
2021-01-15 17:47:43 +01:00
Jan Tojnar
c0d2951fa6
Merge branch 'master' into staging-next
2021-01-15 17:46:46 +01:00
Sandro
f6a9596c4a
Merge pull request #109450 from msteen/patch-2
...
nix-prefetch: 0.3.1 -> 0.4.0
2021-01-15 16:55:33 +01:00
Tim Steinbach
7bead9b8fa
awscli: 1.18.211 -> 1.18.215
2021-01-15 10:39:10 -05:00
msteen
a4e13d2a1a
nix-prefetch: 0.3.1 -> 0.4.0
2021-01-15 16:21:08 +01:00
Mrinal Purohit
7370d2346b
google-cloud-sdk: 322.0.0 -> 323.0.0
2021-01-15 19:21:14 +05:30
Johannes Schleifenbaum
be9bda4fa0
mycli: 1.22.2 -> 1.23.0
2021-01-15 14:50:31 +01:00
Michael Weiss
2345e374af
svt-av1: Extend the meta attributes
...
I've merged my local package definitions with the ones in Nixpkgs.
2021-01-15 14:21:07 +01:00
Jörg Thalheim
147270c1c9
Merge pull request #109434 from siraben/pkgs-tools-stdenv
...
pkgs/tools: stdenv.lib -> lib
2021-01-15 10:48:18 +00:00
Ben Siraphob
8c5d37129f
pkgs/tools: stdenv.lib -> lib
2021-01-15 17:12:36 +07:00
Sandro
ebd22859f2
Merge pull request #108969 from lourkeur/update/xpra
2021-01-15 10:52:16 +01:00
Michael Raskin
35da03c298
Merge pull request #93321 from chessai/puppeteer-init
...
puppeteer-cli: init
2021-01-15 09:36:52 +00:00
Maximilian Bosch
9e3a6eaec1
Merge pull request #109082 from delroth/sudo-1.9.5p1
...
sudo: 1.9.4p2 -> 1.9.5p1
2021-01-15 09:30:01 +01:00
Sarah Brofeldt
c6c1319d13
Merge pull request #109286 from johanot/ceph-15.2.8
...
ceph: 15.2.7 -> 15.2.8
2021-01-15 08:44:08 +01:00
github-actions[bot]
3773920be6
Merge staging-next into staging
2021-01-15 01:16:38 +00:00
github-actions[bot]
9f69dadafd
Merge master into staging-next
2021-01-15 01:16:33 +00:00
Alyssa Ross
3893d6c6d7
gitAndTools: move everything to the top level
...
The comment at the top of git-and-tools/default.nix said:
/* All git-relates tools live here, in a separate attribute set so that users
* can get a fast overview over what's available.
but unfortunately that hasn't actually held up in practice.
Git-related packages have continued to be added to the top level, or
into gitAndTools, or sometimes both, basically at random, so having
gitAndTools is just confusing. In fact, until I looked as part of
working on getting rid of gitAndTools, one program (ydiff) was
packaged twice independently, once in gitAndTools and once at the top
level (I fixed this in 98c3490196
).
So I think it's for the best if we move away from gitAndTools, and
just put all the packages it previously contained at the top level.
I've implemented this here by just making gitAndTools an alias for the
top level -- this saves having loads of lines in aliases.nix. This
means that people can keep referring to gitAndTools in their
configuration, but it won't be allowed to be used within Nixpkgs, and
it won't be presented to new users by e.g. nix search.
The only other change here that I'm aware of is that
appendToName "minimal" is not longer called on the default git
package, because doing that would have necessitated having a private
gitBase variable like before. I think it makes more sense not to do
that anyway, and reserve the "minimal" suffix only for gitMinimal.
2021-01-14 21:27:48 +00:00
Sandro
1fa1ae39f5
Merge pull request #108563 from mkuettel/plantuml-1.2020.26
...
plantuml: 1.2020.19 -> 1.2020.26
2021-01-14 20:58:38 +01:00
zowoq
2299a66b88
gdu: 2.2.0 -> 2.3.0
...
https://github.com/dundee/gdu/releases/tag/v2.3.0
2021-01-15 05:36:04 +10:00
Michael Weiss
7fb79605a7
inxi: 3.2.02-1 -> 3.2.02-2
2021-01-14 20:32:59 +01:00
github-actions[bot]
fb6ed8abd1
Merge staging-next into staging
2021-01-14 18:54:08 +00:00
github-actions[bot]
183b673b64
Merge master into staging-next
2021-01-14 18:54:05 +00:00
Fabian Möller
f213aa3ae0
nixpart0: stdenv.lib -> lib
...
This fixes an evaluation error indroduced by #108978
2021-01-14 16:57:44 +01:00
Sandro
55ebc2e2c2
Merge pull request #109358 from oxzi/reuse-0.12.1
...
reuse: 0.11.1 -> 0.12.1
2021-01-14 16:11:53 +01:00
Alvar Penning
8f81d7554f
reuse: 0.11.1 -> 0.12.1
...
Next to the version bump, the tests are now executed.
2021-01-14 15:55:10 +01:00
Sandro
7dd624a450
Merge pull request #109311 from bbigras/zenith
...
zenith: 0.11.0 -> 0.12.0
2021-01-14 15:29:58 +01:00
Michael Raskin
f62ab91aa7
Merge pull request #104912 from helsinki-systems/upd/p7zip
...
p7zip: 17.01 -> 17.03
2021-01-14 14:10:42 +00:00
github-actions[bot]
44f5b1d3bd
Merge staging-next into staging
2021-01-14 12:42:23 +00:00
github-actions[bot]
730ff71234
Merge master into staging-next
2021-01-14 12:42:20 +00:00
Emery Hemingway
f385802067
gnuvd: remove
...
The backend service for this dictionary has been discontinued or is
incompatible.
2021-01-14 13:36:21 +01:00
Zhaofeng Li
091a4ef01e
coreutils: Apply sys_getdents patch unconditionally
...
Also breaks build for riscv64.
2021-01-13 20:13:59 -08:00
ajs124
0004c16701
p7zip: 17.01 -> 17.03
2021-01-14 02:58:41 +01:00
Jan Tojnar
0f111a19ca
Merge branch 'staging-next' into staging
2021-01-14 02:25:13 +01:00
Jan Tojnar
b813710c04
Merge branch 'master' into staging-next
2021-01-14 02:24:17 +01:00
Bruno Bigras
3e367bdcba
zenith: 0.11.0 -> 0.12.0
2021-01-13 15:28:38 -05:00
llathasa-veleth
92803d781b
disfetch: 1.12 -> 1.13
2021-01-13 22:33:51 +03:00
Michael Weiss
e85084a85b
rav1e: 0.4.0-alpha -> 0.4.0
2021-01-13 17:55:39 +01:00
Mogria
2025ca9528
plantuml: 1.2020.22 -> 1.2020.26
...
PlantUML complains that it's too old when a diagram is generated to PNG an
error occurs.
2021-01-13 16:31:10 +01:00