Frederik Rietdijk
635ea98f2f
Merge pull request #86330 from NixOS/staging-next
...
Staging next
2020-05-01 08:37:12 +02:00
Frederik Rietdijk
d09c1bc5b3
Merge staging-next into staging
2020-05-01 08:23:58 +02:00
Mario Rodas
f0c66e1a3e
Merge pull request #86298 from magnetophon/mu
...
mu: 1.4.1 -> 1.4.3
2020-04-30 23:35:41 -05:00
Mario Rodas
c786eb9baa
Merge pull request #86303 from filalex77/frp-0.33.0
...
frp: 0.32.0 -> 0.33.0
2020-04-30 23:34:11 -05:00
Andreas Rammhold
bf3870a4c0
Merge pull request #86277 from mweinelt/dnsmasq/2.81
...
dnsmasq: 2.80 → 2.81
2020-05-01 03:50:57 +02:00
Maximilian Bosch
ee58c7a363
Merge pull request #82982 from cole-h/rust-cleanup
...
improve robustness of various Rust packages
2020-04-30 02:07:57 +02:00
Maximilian Bosch
41bd6d2614
nixos/wireguard: test against multiple kernel versions
...
When testing WireGuard updates, I usually run the VM-tests with
different kernels to make sure we're not introducing accidental
regressions for e.g. older kernels.
I figured that we should automate this process to ensure continuously
that WireGuard works fine on several kernels.
For now I decided to test the latest LTS version (5.4) and
the latest kernel (currently 5.6). We can add more kernels in the
future, however this seems to significantly slow down evaluation and
time.
The list can be customized by running a command like this:
nix-build nixos/tests/wireguard --arg kernelVersionsToTest '["4.19"]'
The `kernelPackages` argument in the tests is null by default to make
sure that it's still possible to invoke the test-files directly. In that
case the default kernel of NixOS (currently 5.4) is used.
2020-04-29 23:10:53 +02:00
Oleksii Filonenko
3bdfedde2a
frp: 0.32.0 -> 0.33.0
2020-04-29 13:24:20 +03:00
Bart Brouns
7b8408fd4b
mu: 1.4.1 -> 1.4.3
2020-04-29 11:32:15 +02:00
Jan Tojnar
2874eebfd2
Merge branch 'staging-next' into staging
2020-04-29 08:35:47 +02:00
Pavel Goran
462fa8bbaf
pykms: replace logging patch
...
The logging "sed-patch" that was introduced for version 20190611 worked poorly:
it was too intrusive (breaking the --logfile option), and it didn't prevent
using in-store file for logging by default. The new logging patch (an actual
"diff-patch") is less intrusive: it just changes the default log file's
location to be the current directory instead of the executable's directory.
2020-04-29 03:53:41 +00:00
Martin Weinelt
c9fef6230a
dnsmasq: 2.80 → 2.81
...
Fixes: CVE-2019-14834
A vulnerability was found in dnsmasq before version 2.81, where the
memory leak allows remote attackers to cause a denial of service
(memory consumption) via vectors involving DHCP response creation.
Changelog:
version 2.81
Improve cache behaviour for TCP connections. For ease of
implementaion, dnsmasq has always forked a new process to handle
each incoming TCP connection. A side-effect of this is that
any DNS queries answered from TCP connections are not cached:
when TCP connections were rare, this was not a problem.
With the coming of DNSSEC, it is now the case that some
DNSSEC queries have answers which spill to TCP, and if,
for instance, this applies to the keys for the root, then
those never get cached, and performance is very bad.
This fix passes cache entries back from the TCP child process to
the main server process, and fixes the problem.
Remove the NO_FORK compile-time option, and support for uclinux.
In an era where everything has an MMU, this looks like
an anachronism, and it adds to (Ok, multiplies!) the
combinatorial explosion of compile-time options. Thanks to
Kevin Darbyshire-Bryant for the patch.
Fix line-counting when reading /etc/hosts and friends; for
correct error messages. Thanks to Christian Rosentreter
for reporting this.
Fix bug in DNS non-terminal code, added in 2.80, which could
sometimes cause a NODATA rather than an NXDOMAIN reply.
Thanks to Norman Rasmussen, Sven Mueller and Maciej Żenczykowski
for spotting and diagnosing the bug and providing patches.
Support TCP-fastopen (RFC-7413) on both incoming and
outgoing TCP connections, if supported and enabled in the OS.
Improve kernel-capability manipulation code under Linux. Dnsmasq
now fails early if a required capability is not available, and
tries not to request capabilities not required by its
configuration.
Add --shared-network config. This enables allocation of addresses
by the DHCP server in subnets where the server (or relay) does not
have an interface on the network in that subnet. Many thanks to
kamp.de for sponsoring this feature.
Fix broken contrib/lease_tools/dhcp_lease_time.c. A packet
validation check got borked in commit 2b38e382 and release 2.80.
Thanks to Tomasz Szajner for spotting this.
Fix compilation against nettle version 3.5 and later.
Fix spurious DNSSEC validation failures when the auth section
of a reply contains unsigned RRs from a signed zone,
with the exception that NSEC and NSEC3 RRs must always be signed.
Thanks to Tore Anderson for spotting and diagnosing the bug.
Add --dhcp-ignore-clid. This disables reading of DHCP client
identifier option (option 61), so clients are only identified by
MAC addresses.
Fix a bug which stopped --dhcp-name-match from working when a hostname
is supplied in --dhcp-host. Thanks to James Feeney for spotting this.
Fix bug which caused very rarely caused zero-length DHCPv6 packets.
Thanks to Dereck Higgins for spotting this.
Add --tftp-single-port option.
Enhance --conf-dir to load files in a deterministic order. Thanks to
Evgenii Seliavka for the suggestion and initial patch.
In the router advert code, handle case where we have two
different interfaces on the same IPv6 net, and we are doing
RA/DHCP service on only one of them. Thanks to NIIBE Yutaka
for spotting this case and making the initial patch.
Support prefixed ranges of ipv6 addresses in dhcp-host.
This eases problems chain-netbooting, where each link in the
chain requests an address using a different UID. With a single
address, only one gets the "static" address, but with this
fix, enough addresses can be reserved for all the stages of the
boot. Many thanks to Harald Jensås for his work on this idea and
earlier patches.
Add filtering by tag of --dhcp-host directives. Based on a patch
by Harald Jensås.
Allow empty server spec in --rev-server, to match --server.
Remove DSA signature verification from DNSSEC, as specified in
RFC 8624. Thanks to Loganaden Velvindron for the original patch.
Add --script-on-renewal option.
2020-04-29 04:22:08 +02:00
zowoq
b5dc07a4b4
treewide: use $out instead of $bin with buildGoPackage
2020-04-28 20:30:29 +10:00
Jörg Thalheim
d45bece61d
connmanui: remove
...
no update since 2015.
The software never left alpha stage
2020-04-28 09:46:49 +01:00
Jörg Thalheim
ef959a1d9b
Merge pull request #85984 from Mic92/wireguard
2020-04-26 11:28:55 +01:00
Maximilian Bosch
a4347f2b92
wireguard: reference missing `nixosTests.wireguard`
2020-04-25 20:22:14 +02:00
Jörg Thalheim
77dc7ef908
wireguard-tools: reference tests
2020-04-25 11:16:10 +01:00
Bruno Bigras
6478e659da
httplz: 1.8.0 -> 1.9.2
2020-04-25 04:10:37 -04:00
Konrad Borowski
6d8e791b28
rtptools: update homepage link to use HTTPS
2020-04-24 19:44:59 -07:00
Konrad Borowski
409f57508d
slimrat: remove
...
The package was marked as broken for 3 years, there were no
upstream updates for 8 years, and the program requires third
party services that don't provide APIs to work. I think it's
safe to say that this program is not going to work.
2020-04-24 17:18:07 +02:00
Jörg Thalheim
58c693c921
Merge pull request #85919 from xfix/fix-build-with-bash-completion
2020-04-24 12:10:11 +01:00
Konrad Borowski
d655b917c1
mosh: fix build with bash-completion 2.10
...
Fixes #85893
2020-04-24 12:47:18 +02:00
zowoq
478155679f
slirp4netns: 1.0.0 -> 1.0.1
...
https://github.com/rootless-containers/slirp4netns/releases/tag/v1.0.1
2020-04-24 10:36:20 +10:00
Martin Milata
f35d50c68c
openvpn: 2.4.7 -> 2.4.9
...
Fixes CVE-2020-11736
2020-04-23 14:25:37 +02:00
Frederik Rietdijk
cff0669a48
Merge master into staging-next
2020-04-23 08:11:16 +02:00
Martin Weinelt
e323fbabba
babeld: 1.9.1 → 1.9.2
...
Dear all,
Babeld-1.9.2 is available from
https://www.irif.fr/~jch/software/files/babeld-1.9.2.tar.gz
https://www.irif.fr/~jch/software/files/babeld-1.9.2.tar.gz.asc
For more information about the Babel routing protocol, please see
https://www.irif.fr/~jch/software/babel/
This is a bug fix release. It fixes two bugs where IPv4 prefixes could be
represented incorrectly, with a range of confusing symptoms ; many thanks
to Faban Bläse for diagnosing the issue. In addition, it fixes incorrect
parsing of unknown address encodings, thanks to Théo Bastian for the fix.
21 April 2020: babeld-1.9.2
* Fixed two issues that could cause IPv4 routes to be represented
incorrectly, with a range of confusing symptoms. Thanks to
Fabian Bläse.
* Fixed incorrect parsing of TLVs with an unknown Address Encoding.
Thanks to Théophile Bastian.
* Fixed access to mis-aligned data structure. Thanks to Antonin Décimo.
-- Juliusz Chroboczek
_______________________________________________
Babel-users mailing list
Babel-users@alioth-lists.debian.net
https://alioth-lists.debian.net/cgi-bin/mailman/listinfo/babel-users
2020-04-22 19:33:19 +02:00
Frederik Rietdijk
8374a2a0ee
Merge master into staging-next
2020-04-22 17:20:20 +02:00
Emery Hemingway
59219a1e55
yggdrasil: declare tests from nixosTests
2020-04-22 11:45:04 +05:30
Emery Hemingway
a2e3fc32b3
cjdns: declare tests from nixosTests
2020-04-22 11:45:04 +05:30
Frederik Rietdijk
23be4a8b4d
Merge master into staging-next
2020-04-21 19:59:56 +02:00
Jörg Thalheim
b1e93ddf4d
ferm: 2.4.1 -> 2.5.1
2020-04-21 19:48:29 +02:00
Peter Hoeg
e43a6c9468
mu: minor cleanup
2020-04-21 19:36:47 +02:00
Frederik Rietdijk
803b3d296c
Merge staging-next into staging
2020-04-21 08:29:51 +02:00
Daniel Fullmer
4b0b23db77
wifite2: 2.5.2 -> 2.5.3
2020-04-20 23:10:15 +02:00
Bart Brouns
ed79cb56b7
mu: 1.2 -> 1.4.1
...
msg2pdf is disabled for now:
https://github.com/djcb/mu/blob/1.4.1/NEWS.org
2020-04-20 11:03:03 +02:00
Léo Gaspard
2d6f7344d8
Merge pull request #74841 from tilpner/ferm-update
...
ferm: 2.4.1 -> 2.5
2020-04-20 00:59:46 +02:00
Alyssa Ross
a72c5b5388
modemmanager: enableParallelBuilding
...
Seems to work fine for me at -j48.
2020-04-19 22:35:29 +00:00
Mario Rodas
1406d8b314
Merge pull request #85343 from xrelkd/add/rshijack
...
rshijack: init at 0.3.0
2020-04-19 11:29:23 -05:00
Bart Brouns
2c25f89344
networkmanager_dmenu: 1.1 -> 1.5.0
2020-04-19 14:13:01 +02:00
rnhmjoj
55d52851a6
mitmproxy: 4.0.4 -> 5.1.1
2020-04-19 11:19:36 +02:00
Vladimír Čunát
e233a9d4dd
Merge #84442 : staging-next branch
2020-04-18 23:11:00 +02:00
John Ericson
1ea80c2cc3
Merge remote-tracking branch 'upstream/master' into staging
2020-04-18 15:40:49 -04:00
xrelkd
07a85c01ac
rshijack: init at 0.3.0
2020-04-19 02:20:15 +08:00
worldofpeace
21861f3a80
Merge pull request #85340 from xrelkd/add/sniffglue
...
sniffglue: init at 0.10.1
2020-04-18 14:16:40 -04:00
xrelkd
2b87ca0f9c
sniffglue: init at 0.10.1
2020-04-19 01:57:35 +08:00
Oleksii Filonenko
9524aafeb7
httpie: 2.0.0 -> 2.1.0
2020-04-18 18:36:09 +03:00
Vladimír Čunát
d96487b9ca
Merge branch 'master' into staging-next
...
Hydra nixpkgs: ?compare=1582510
2020-04-18 07:42:26 +02:00
John Ericson
33c2a76c5e
Merge remote-tracking branch 'upstream/master' into staging
2020-04-17 18:40:51 -04:00
Mario Rodas
ba947eba04
Merge pull request #85347 from zowoq/megatools
...
megatools: 1.10.2 -> 1.10.3
2020-04-17 05:54:19 -05:00
Maximilian Bosch
20252ee647
findomain: 1.4.5 -> 1.5.0
...
https://github.com/Edu4rdSHL/findomain/releases/tag/1.5.0
2020-04-17 00:28:13 +02:00
zowoq
dc85a2e584
megatools: 1.10.2 -> 1.10.3
2020-04-17 08:07:55 +10:00
Jan Tojnar
4b706490da
Merge branch 'staging-next' into staging
2020-04-16 10:10:38 +02:00
Jan Tojnar
3d8e436917
Merge branch 'master' into staging-next
2020-04-16 10:09:43 +02:00
R. RyanTM
342eaba9eb
cjdns: 20.5 -> 20.6
2020-04-16 12:29:02 +05:30
William O'Hanley
93f3452f87
goimapnotify: init at 2.0
2020-04-15 20:21:20 -07:00
Maximilian Bosch
8c50c432ef
Merge pull request #85114 from r-ryantm/auto-update/offlineimap
...
offlineimap: 7.3.2 -> 7.3.3
2020-04-15 23:44:18 +02:00
Maximilian Bosch
e3553f1d94
iftop: add `passthru.tests` to reference VM-test
2020-04-15 22:35:46 +02:00
Oleksii Filonenko
9c51dba6d9
drill: init at 0.5.0
2020-04-15 21:08:20 +03:00
Mario Rodas
7e07846d99
Merge pull request #85236 from mdlayher/mdl-corerad-0.2.3
...
corerad: 0.2.2 -> 0.2.3
2020-04-14 20:08:51 -05:00
Daniel Fullmer
93f3b6edc7
wifite2: add danielfullmer to maintainers
2020-04-14 14:55:06 -04:00
Daniel Fullmer
7e46e2a863
wifite2: 2.2.5 -> 2.5.2
...
The kimocoder repo is more recently updated, and is the one used by
Debian / Kali Linux as well.
2020-04-14 14:29:18 -04:00
Matt Layher
e8f76e40ee
corerad: 0.2.2 -> 0.2.3
2020-04-14 12:47:57 -04:00
worldofpeace
cff16451b1
Merge pull request #84437 from r-ryantm/auto-update/modem-manager
...
modemmanager: 1.12.6 -> 1.12.8
2020-04-13 17:40:29 -04:00
Jan Tojnar
a04625379a
Merge branch 'master' into staging-next
2020-04-13 18:50:35 +02:00
zowoq
8660728070
Revert "amass: enable on darwin"
...
This reverts commit 692b890004
.
Not needed now that Security is propagated via go 0bba7474b3
2020-04-13 13:08:02 +10:00
R. RyanTM
e443f9f194
offlineimap: 7.3.2 -> 7.3.3
2020-04-13 00:51:42 +00:00
Cole Helbling
857bf884f4
tox-node: improve robustness of installPhase
2020-04-12 14:07:30 -07:00
Ryan Mulligan
681db60364
Merge pull request #85048 from r-ryantm/auto-update/tendermint
...
tendermint: 0.32.3 -> 0.32.10
2020-04-12 06:40:13 -07:00
R. RyanTM
ce4e6b8a75
tendermint: 0.32.3 -> 0.32.10
2020-04-12 03:15:13 +00:00
Benjamin Hipple
b93ca0fd67
Merge pull request #84884 from Izorkin/maxscale-broken
...
maxscale: make broken package
2020-04-10 15:40:48 -04:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs
2020-04-10 17:54:53 +01:00
Jan Tojnar
1ab03c3a76
Merge branch 'master' into staging-next
2020-04-10 12:12:56 +02:00
Izorkin
63d9ab069a
maxscale: make broken package
2020-04-10 09:51:53 +03:00
zowoq
6743b118b9
croc: 8.0.5 -> 8.0.7
...
https://github.com/schollz/croc/releases/tag/v8.0.6
https://github.com/schollz/croc/releases/tag/v8.0.7
2020-04-10 09:36:46 +10:00
R. RyanTM
365304bbcb
openfortivpn: 1.12.0 -> 1.13.1
2020-04-09 10:49:17 -07:00
Mario Rodas
c11dd7afad
Merge pull request #84784 from r-ryantm/auto-update/s3cmd
...
s3cmd: 2.0.2 -> 2.1.0
2020-04-09 11:51:45 -05:00
Mario Rodas
88d690d217
Merge pull request #84758 from r-ryantm/auto-update/axel
...
axel: 2.17.7 -> 2.17.8
2020-04-09 11:34:00 -05:00
Ryan Mulligan
a6464405fe
Merge pull request #84777 from r-ryantm/auto-update/nebula
...
nebula: 1.1.0 -> 1.2.0
2020-04-09 06:26:48 -07:00
Jan Tojnar
bbb299c8e4
Merge pull request #84177 from zowoq/team
...
maintainers/teams: add podman team
2020-04-09 13:57:12 +02:00
Mario Rodas
d20690b0d0
s3cmd: use python3
2020-04-09 04:20:00 -05:00
Tor Hedin Brønner
88607e0e02
Merge pull request #84694 from hedning/gnome-3.36.1
...
Gnome 3.36.1
2020-04-09 10:37:23 +02:00
Tor Hedin Brønner
ad68703e14
networkmanager-openvpn: 1.8.10 -> 1.8.12
...
- libnm-glib is now disabled by default
2020-04-09 10:24:07 +02:00
R. RyanTM
9d9ea65c5d
s3cmd: 2.0.2 -> 2.1.0
2020-04-09 08:03:25 +00:00
R. RyanTM
f2cdddd2eb
nebula: 1.1.0 -> 1.2.0
2020-04-09 05:53:04 +00:00
R. RyanTM
6eee5229c5
axel: 2.17.7 -> 2.17.8
2020-04-09 00:40:41 +00:00
Samuel Leathers
72cb7f81fd
Merge pull request #81442 from manveru/bundler-2.1.4
...
bundler: 1.17.3 -> 2.1.4
2020-04-08 12:44:54 -04:00
R. RyanTM
ff245d646e
clash: 0.18.0 -> 0.19.0
2020-04-07 13:16:58 -07:00
Jaka Hudoklin
3567e1f6cc
Merge pull request #84498 from doronbehar/python3-nyx
...
nyx: use python3 by default
2020-04-07 01:48:50 +00:00
R. RyanTM
41fa7a2295
nfdump: 1.6.19 -> 1.6.20
2020-04-06 12:43:55 -07:00
Doron Behar
a996d7c4a9
nyx: use python3 by default
2020-04-06 20:14:08 +03:00
Michael Fellinger
f92600b406
update versions in Gemfile.lock
2020-04-06 15:02:13 +02:00
Frederik Rietdijk
2420184727
Merge staging into staging-next
2020-04-06 08:54:28 +02:00
R. RyanTM
b2fe03baf4
modemmanager: 1.12.6 -> 1.12.8
2020-04-06 06:17:27 +00:00
Mario Rodas
e6b7d37c16
Merge pull request #84392 from r-ryantm/auto-update/haproxy
...
haproxy: 2.1.3 -> 2.1.4
2020-04-05 20:07:14 -05:00
Mario Rodas
6f8240f136
Merge pull request #84373 from mpolden/master
...
boringtun: 0.2.0 -> 0.3.0
2020-04-05 19:57:37 -05:00
R. RyanTM
65d787360d
haproxy: 2.1.3 -> 2.1.4
2020-04-05 20:31:09 +00:00
Martin Polden
bb62957091
boringtun: 0.2.0 -> 0.3.0
2020-04-05 19:49:41 +02:00
Maximilian Bosch
35c0d9da9b
bandwhich: 0.12.0 -> 0.13.0
...
https://github.com/imsnif/bandwhich/releases/tag/0.13.0
2020-04-05 19:48:16 +02:00
R. RyanTM
e4df9d6b54
curl: 7.68.0 -> 7.69.1
2020-04-05 13:30:55 +02:00
R. RyanTM
79782065bc
minio-client: 2020-03-06T23-29-45Z -> 2020-04-04T05-28-55Z
2020-04-05 02:43:38 +00:00
Frederik Rietdijk
edaa972160
Merge staging-next into staging
2020-04-03 21:55:10 +02:00
Frederik Rietdijk
92124ed660
Merge master into staging-next
2020-04-03 21:54:40 +02:00
zowoq
4bbd415ddf
slirp4netns: update maintainers
2020-04-03 20:37:59 +10:00
Mario Rodas
c70d948c93
Merge pull request #83859 from zowoq/slirp4netns
...
slirp4netns: 0.4.4 -> 1.0.0
2020-04-02 18:09:48 -05:00
Jörg Thalheim
c40f90428a
mosh: enable parallel building
2020-04-02 14:50:00 +01:00
Emery Hemingway
b31d676f6a
yggdrasil: 0.3.13 -> 0.3.14
2020-04-02 14:13:36 +05:30
Mario Rodas
6148618bf9
Merge pull request #83935 from r-ryantm/auto-update/amass
...
amass: 3.5.1 -> 3.5.4
2020-04-01 20:02:59 -05:00
R. RyanTM
20eaf064fc
nethogs: 0.8.5 -> 0.8.6
2020-04-01 23:44:00 +02:00
Mario Rodas
c0149fd27e
Merge pull request #83958 from r-ryantm/auto-update/dnsproxy
...
dnsproxy: 0.23.7 -> 0.24.0
2020-04-01 08:11:25 -05:00
Jan Tojnar
15002f1cfd
tree-wide: Switch from gnome3.maintainers to lib.teams.gnome
2020-04-01 14:41:43 +02:00
R. RyanTM
183e6702e6
dnsproxy: 0.23.7 -> 0.24.0
2020-04-01 10:44:24 +00:00
Michele Guerini Rocco
8b32f3d4b4
Merge pull request #83610 from Atemu/dnscrypt-proxy-2.0.42
...
dnscrypt-proxy2: 2.0.39 -> 2.0.42
2020-04-01 10:43:55 +02:00
R. RyanTM
7cfb07428f
amass: 3.5.1 -> 3.5.4
2020-04-01 07:43:41 +00:00
zowoq
8ecb0108d6
croc: 8.0.4 -> 8.0.5
...
https://github.com/schollz/croc/releases/tag/v8.0.5
2020-04-01 08:40:58 +10:00
Jan Tojnar
3e0f4e202f
Merge branch 'master' into staging-next
2020-03-31 21:32:15 +02:00
Timo Kaufmann
d2774425f3
Merge pull request #83067 from doronbehar/update-gtk-gnutella
...
gtk-gnutella: 1.1.14 -> 1.1.15
2020-03-31 14:46:32 +00:00
Mario Rodas
c30ec8725c
Merge pull request #83828 from r-ryantm/auto-update/circus
...
circus: 0.15.0 -> 0.16.1
2020-03-31 07:34:01 -05:00
zowoq
237a1e75b2
slirp4netns: 0.4.4 -> 1.0.0
...
https://github.com/rootless-containers/slirp4netns/releases/tag/v1.0.0
2020-03-31 18:32:07 +10:00
R. RyanTM
365eb878a9
pirate-get: 0.3.4 -> 0.3.5
2020-03-30 20:21:50 -07:00
R. RyanTM
296d1f813d
circus: 0.15.0 -> 0.16.1
2020-03-31 02:28:35 +00:00
Doron Behar
98f5d0574f
gtk-gnutella: 1.1.14 -> 1.1.15
...
Remove patches applied between 1.1.14 and 1.1.15 and switch to GitHub
source.
gtk-gnutella: several changes.
Disable internal malloc implementation.
Add @doronbehar as maintainer.
Comment about hardeningDisable regarding next release.
Format arguments and inputs.
Enable to disable GUI.
2020-03-30 13:44:17 +03:00
Profpatsch
49be064fa5
skawarePackages: release 2020-03
...
Hello,
New versions of all the skarnet.org packages are available.
This is mostly a bugfix release (there was an installation bug in
some circumstances with shared libraries) but some packages, notably
execline and s6, have new, useful features.
The new versions are the following:
skalibs-2.9.2.0
nsss-0.0.2.2
utmps-0.0.3.2
execline-2.6.0.0
s6-2.9.1.0
s6-rc-0.5.1.2
s6-linux-init-1.0.4.0
s6-dns-2.3.2.0
s6-networking-2.3.1.2
s6-portable-utils-2.2.2.2
s6-linux-utils-2.5.1.2
mdevd-0.1.1.2
bcnm-0.0.1.0
Here are details for the packages that have more than bugfixes:
* skalibs-2.9.2.0
---------------
- New header: skalibs/bigkv.h. It's a set of functions allowing
efficient lookups in a large set of strings (typically read from the
command line or the environment).
https://skarnet.org/software/skalibs/
git://git.skarnet.org/skalibs
* execline-2.6.0.0
----------------
- It's a major release because an API has been modified: dollarat.
Beforehand, dollarat's -0 option would always prevail over any -d
option. Now, dollarat has its conflicting -0 and -d options handled
in the conventional way, with rightmost priority.
- The runblock program now accepts a command line prefix, which is
given as runblock's own command line. This allows blocks to serve as
arguments to a new command, instead of having to be full command lines
by themselves.
- New binary: posix-umask.
- The former "cd" program is now named "execline-cd" and the former
"umask" program is named "execline-umask". When the=20
--enable-pedantic-posix
option is not given at configure time, "cd" and "umask" are symbolic
links created at installation time and pointing to execline-cd and
execline-umask respectively. When the --enable-pedantic-posix option is
given, the symbolic links point to posix-cd and posix-umask instead.
- With posix-cd and posix-umask (and the changes to wait done in the
previous version), execline is now fully POSIX-compliant when built with
the --enable-pedantic-posix option. This will certainly, without the
slightest hint of a doubt, change distributions' attitudes about it.
https://skarnet.org/software/execline/
git://git.skarnet.org/execline
* s6-2.9.1.0
----------
- A new '?' directive has been added to s6-log. It behaves exactly like
'!', except that it spawns the given processor with /bin/sh as an
interpreter instead of execlineb.
- execline support is now optional: it can be disabled by specifying
--disable-execline at configure time. Some functionality is unavailable
when execline support is disabled:
* s6-log's '!' directive
* s6-notifyoncheck's -c option
* s6-ipcserver-access's support for 'exec' directives in a ruleset
- A new -X option has been added to s6-svscan, to specify a descriptor
that will be passed as stderr to a service spawned by this s6-svscan and
named s6-svscan-log. This is used in the new s6-linux-init, to avoid
needing to hardcode the /dev/console name for the catch-all logger's
standard error.
- On systems that define SIGPWR and SIGWINCH, s6-svscan -s now diverts
those signals. This allows powerfail and kbrequest events to be handled
when s6-svscan runs as process 1.
https://skarnet.org/software/s6/
git://git.skarnet.org/s6
* s6-linux-init-1.0.4.0
---------------------
- New options have been added to s6-linux-init-maker: to support
running s6-linux-init without a catch-all logger, and to support running
it in a container.
- s6-linux-init-maker now adds a SIGPWR handler to the default image:
on receipt of a SIGPWR, the system's shutdown procedure is triggered.
- s6-linux-init now handles kbrequest, which triggers a SIGWINCH in
init when a special, configurable set of keys is pressed. By default,
no SIGWINCH handler is declared in the image, and no set of keys is
bound to kbrequest.
https://skarnet.org/software/s6-linux-init/
git://git.skarnet.org/s6-linux-init
* s6-dns-2.3.2.0
--------------
- New library: libdcache, implementing a clean cache structure
to contain DNS data. It's still not used at the moment.
https://skarnet.org/software/s6-dns/
git://git.skarnet.org/s6-dns
* bcnm-0.0.1.0
------------
- First numbered release, because the Ad=C3=A9lie Linux distribution,
which uses libwpactrl, needs an official release instead of pulling
from git.
- libwpactrl is a set of C functions helping control a wpa_supplicant
process.
- bcnm-waitif is a binary that waits for network interface state
events such as appearance/disappearance, up/down, running/not-running.
It is useful to avoid race conditions during a boot sequence, for
instance.
https://skarnet.org/software/bcnm/
git://git.skarnet.org/bcnm
Enjoy,
Bug-reports welcome.
--
Laurent
2020-03-30 01:23:46 +02:00
Jörg Thalheim
d04396da8b
Merge pull request #82852 from Mic92/cross-build-rust-package
...
[WIP] buildRustPackage: enable strictDeps
2020-03-29 14:07:07 +01:00
Fabian Möller
2346014aae
bgpq3: init at 0.1.35
2020-03-29 14:12:36 +02:00
Jörg Thalheim
649eecd631
httplz: fix strict deps build
2020-03-29 12:37:24 +01:00
Jan Tojnar
fa4e1bbe07
Merge branch 'master' into staging-next
...
Fix eval of nixos/nginx
2020-03-29 00:35:29 +01:00
Maximilian Bosch
7a7d7b1215
findomain: 1.4.2 -> 1.4.5
2020-03-28 23:37:26 +01:00
worldofpeace
d5cfaf5c39
Merge pull request #83473 from doronbehar/update-connman
...
connman: 1.37 -> 1.38
2020-03-28 18:18:14 -04:00
Frederik Rietdijk
a36be028f5
Merge staging-next into staging
2020-03-28 21:15:15 +01:00
Atemu
1b0799f48f
dnscrypt-proxy: 2.0.39 -> 2.0.42
2020-03-28 18:21:14 +01:00
Doron Behar
bffec3d884
nixos/connman: add TODOs regarding connman + network-manager
2020-03-28 12:28:29 +03:00
Jörg Thalheim
774ddebd87
Merge pull request #83472 from Mic92/propragate-darwin-go
...
Propragate darwin go
2020-03-28 06:57:59 +00:00
Michael Weiss
87f08d070d
ubridge: 0.9.17 -> 0.9.18
2020-03-27 11:09:38 +01:00
Doron Behar
b03bf779ae
connman: remove unneeded deps from nativeBuildInputs
2020-03-27 10:43:51 +03:00
Doron Behar
aa44c23c7a
connman: reverse order of build flavors declaration
2020-03-27 10:43:51 +03:00
Doron Behar
22b27dd635
connman: remove import of networkmanager
2020-03-27 10:43:51 +03:00
Doron Behar
a3d2e48a62
connmanMinimal: remove use of lowPrio
2020-03-27 10:43:51 +03:00
Doron Behar
fa5f7b89c4
connman: Switch to postPatch from patchPhase
2020-03-27 10:43:51 +03:00
Doron Behar
3b89674dc3
connman: declare build flavors idiomaticly
...
Use tesseract as a source for inspiration - rename default.nix ->
connman.nix and declare build flavors in default.nix .
2020-03-27 10:43:51 +03:00
Doron Behar
be59cb3be8
connman: Use patchPhase instead of preConfigure
2020-03-27 10:43:51 +03:00
Doron Behar
e59deafc2d
connman: Use global reference to lib.optionals
2020-03-27 10:43:51 +03:00
Doron Behar
cdc20ac30e
connman: Fix comments after @erikarvstedt's comments
2020-03-27 10:43:51 +03:00
Doron Behar
53d8831b62
connman: cleanup build from the groundup
2020-03-27 10:43:51 +03:00
Doron Behar
50ce1e6469
connman: doCheck and split outputs
2020-03-27 10:43:51 +03:00
Doron Behar
a0e966d797
connman: upgrade to readline latest
2020-03-27 10:43:50 +03:00
Doron Behar
e55ad4897d
connman: quote homepage
2020-03-27 10:43:50 +03:00
Doron Behar
e9569a0a03
connman: quote out in configure flag
2020-03-27 10:43:50 +03:00
Doron Behar
184d741292
connman: remove unneeded hooks
2020-03-27 10:43:50 +03:00
Doron Behar
bc4d2abac8
connman: remove unneeded deps
2020-03-27 10:43:50 +03:00
Doron Behar
7cdd874589
connman: 1.37 -> 1.38
2020-03-27 10:43:50 +03:00
Doron Behar
59613f5ca5
connman: format argument lists and inputs
2020-03-27 10:43:50 +03:00
Jörg Thalheim
066db11215
Revert "Merge pull request #83099 from marsam/fix-buildGoModule-packages-darwin"
...
This reverts commit 4e6bf03504
, reversing
changes made to afd997aab6
.
Instead we propagate those frameworks from the compiler again
2020-03-27 07:33:21 +00:00
worldofpeace
4feb4cf707
networkmanager: 1.22.8 -> 1.22.10
2020-03-26 11:13:26 -04:00
Jörg Thalheim
461784ffe4
Merge pull request #83373 from bbigras/pixiecore
...
pixiecore: init at 2020-03-25
2020-03-26 08:09:30 +00:00
Bruno Bigras
78fbe7dba6
pixiecore: init at 2020-03-25
...
Co-authored-by: raunovv <rauno@oyenetwork.com>
2020-03-26 00:50:29 -04:00
Mario Rodas
07771d755b
Merge pull request #83262 from servalcatty/bump/v2ray
...
v2ray: 4.22.1 -> 4.23.0
2020-03-25 20:32:15 -05:00
zowoq
2d48c2fbcd
croc: 8.0.3 -> 8.0.4
...
https://github.com/schollz/croc/releases/tag/v8.0.4
2020-03-24 19:11:37 -07:00
Marek Mahut
faba8e115d
Merge pull request #83311 from romildo/upd.uget
...
uget: 2.2.2 -> 2.2.3-1
2020-03-24 20:35:16 +01:00
José Romildo Malaquias
911acc42f2
uget: 2.2.2 -> 2.2.3-1
2020-03-24 16:01:43 -03:00
Michael Weiss
5c73dc4eec
ubridge: 0.9.16 -> 0.9.17
2020-03-24 16:29:20 +01:00
Serval
d45abfa215
v2ray: 4.22.1 -> 4.23.0
2020-03-24 12:17:23 +08:00
Jan Tojnar
986fbf4799
Merge branch 'staging-next' into staging
2020-03-24 01:51:55 +01:00
worldofpeace
01fc385d4a
Merge pull request #82289 from lovesegfault/passh-2020-03-10
...
passh: init at 2020-03-18
2020-03-23 16:23:14 -04:00
Jörg Thalheim
5b043ed82b
ngrok-1: fix strict deps build
2020-03-23 08:14:52 +00:00
Orivej Desh
1b89aa3f7a
Merge branch 'master' into staging
2020-03-23 00:53:16 +00:00
Mario Rodas
4e6bf03504
Merge pull request #83099 from marsam/fix-buildGoModule-packages-darwin
...
treewide: fix buildGoModule packages on darwin
2020-03-22 08:13:37 -05:00
Jan Tojnar
cc73796779
Merge pull request #82699 from hedning/libnma
...
libnma: init at 1.8.28
2020-03-22 00:33:35 +01:00
Mario Rodas
7c096126c7
termshark: fix build on darwin
2020-03-21 06:18:00 -05:00
Mario Rodas
28a71c8f59
yggdrasil: fix build on darwin
2020-03-21 06:09:00 -05:00
Mario Rodas
f729bd752f
tendermint: fix build on darwin
2020-03-21 06:07:00 -05:00
Mario Rodas
dc68986142
obfs4: fix build on darwin
2020-03-21 06:05:00 -05:00
Mario Rodas
1565aabb5e
nebula: fix build on darwin
2020-03-21 06:04:00 -05:00
Mario Rodas
83b6e5b565
shadowfox: fix build on darwin
2020-03-21 06:03:00 -05:00
Mario Rodas
5b83d95f2f
minio-client: fix build on darwin
2020-03-21 05:44:00 -05:00
Mario Rodas
7e4f82ce7f
hey: fix build on darwin
2020-03-21 05:08:00 -05:00
Mario Rodas
a8c36060b7
grpcui: fix build on darwin
2020-03-21 05:06:00 -05:00
Mario Rodas
b139887056
frp: fix build on darwin
2020-03-21 05:03:00 -05:00
Mario Rodas
5ea0235ba9
clash: fix build on darwin
2020-03-21 04:49:00 -05:00
Mario Rodas
59bc2841b4
dnsproxy: fix build on darwin
2020-03-21 04:48:00 -05:00
Mario Rodas
5b6342e8af
corerad: fix build on darwin
2020-03-21 04:47:00 -05:00
Mario Rodas
a35fcc1000
cassowary: fix build on darwin
2020-03-21 04:42:00 -05:00
Mario Rodas
4a5a07a487
croc: fix build on darwin
2020-03-21 04:34:00 -05:00
R. RyanTM
0d8cd0861a
ytcc: 1.8.2 -> 1.8.3
2020-03-20 23:42:43 -07:00
Tor Hedin Brønner
f9f5ab3c88
networkmanager-l2tp: use libnma
2020-03-21 04:44:06 +01:00
Tor Hedin Brønner
59c82bceca
networkmanager-fortisslvpn: use libnma
2020-03-21 04:44:06 +01:00
Tor Hedin Brønner
f8000839df
networkmanager-vpnc: use libnma
2020-03-21 04:44:05 +01:00
Tor Hedin Brønner
e2affc51a0
networkmanager_strongswan: use libnma
2020-03-21 04:44:05 +01:00
Tor Hedin Brønner
5e19d8a4bb
networkmanager-iodine: use libnma
2020-03-21 04:44:04 +01:00
Tor Hedin Brønner
dd48e9b58c
networkmanager-openvpn: use libnma
2020-03-21 04:41:14 +01:00
Tor Hedin Brønner
50438bd5b1
networkmanagerapplet: 1.8.24 -> 1.16.0
...
No longer carries libnma, so we can drop a bunch of dependencies and
simplify a bit.
2020-03-21 04:41:13 +01:00
Tor Hedin Brønner
f07bad3201
networkmanagerapplet: format
2020-03-21 04:41:13 +01:00
Tor Hedin Brønner
2b77be7cd7
libnma: init at 1.8.28
...
Upstream have pulled out libnma from networkmanagerapplet.
2020-03-21 04:41:13 +01:00
Maximilian Bosch
19ceeb6de0
wireguard-tools: 1.0.20200206 -> 1.0.20200319
...
https://lists.zx2c4.com/pipermail/wireguard/2020-March/005191.html
2020-03-20 00:53:49 +01:00
Bernardo Meurer
68775b63f1
passh: init at 2020-03-18
2020-03-18 21:01:04 -07:00
zowoq
b4cf1c96fa
slirp4netns: 0.4.3 -> 0.4.4
...
https://github.com/rootless-containers/slirp4netns/releases/tag/v0.4.4
2020-03-18 20:02:44 -07:00
Mario Rodas
eb3e75e788
Merge pull request #82854 from r-ryantm/auto-update/amass
...
amass: 3.4.4 -> 3.5.0
2020-03-18 21:14:13 -05:00
R. RyanTM
a36056d068
opensm: 3.3.22 -> 3.3.23
2020-03-18 16:13:02 -07:00
Mario Rodas
5966be5e22
amass: 3.5.0 -> 3.5.1
2020-03-18 09:32:01 -05:00
Mario Rodas
692b890004
amass: enable on darwin
2020-03-18 09:31:01 -05:00
R. RyanTM
92f08e07af
amass: 3.4.4 -> 3.5.0
2020-03-18 14:31:01 +00:00
Christian Lütke-Stetzkamp
403a4b1ced
http2tcp: init at 0.5
2020-03-17 11:44:17 -07:00
Domen Kožar
cefe9b2dac
add openapi-generator-cli-unstable
2020-03-17 17:12:16 +01:00
Mario Rodas
988de96ad1
Merge pull request #80833 from r-ryantm/auto-update/inadyn
...
inadyn: 2.5 -> 2.6
2020-03-17 08:29:32 -05:00
Mario Rodas
8b488f2c58
Merge pull request #82539 from r-ryantm/auto-update/frp
...
frp: 0.31.2 -> 0.32.0
2020-03-17 08:12:18 -05:00
Léo Gaspard
a0307bad46
Merge pull request #79120 from symphorien/iodine
...
Iodine: ipv6 support, updates, hardening, nixos test....
2020-03-16 23:42:12 +01:00
Daniel Fullmer
d467d6ce4a
zerotierone: enable package test ( #82738 )
2020-03-16 19:43:35 +00:00
zimbatm
70519e57af
Merge pull request #82733 from misuzu/zerotierone-armv7l-fix
...
zerotierone: fix build on armv7l via gcc9
2020-03-16 20:41:22 +01:00
misuzu
795dcf8908
zerotierone: it supports all platforms
2020-03-16 18:17:18 +02:00
misuzu
8efac4fc98
zerotierone: fix build on armv7l via gcc9
2020-03-16 18:16:43 +02:00
Pierre Bourdon
d62f76f81d
stubby: build with libsystemd support
...
This was added in v0.3.0 and allows notifying service readiness.
2020-03-16 10:10:45 +05:30
Maximilian Bosch
9729f30667
aircrack-ng: 1.5.2 -> 1.6
2020-03-15 22:22:48 +01:00
Jörg Thalheim
f1b69e4d76
Merge pull request #82040 from gnidorah/phodav
...
phodav: 2.3 -> 2.4
2020-03-15 18:25:43 +00:00
Sander van der Burg
875bcef98b
base16-builder: regenerate with node2nix 1.8.0, add supplement.json with node-pre-gyp to fix build
2020-03-15 16:37:47 +01:00
Silvan Mosberger
779b7ff3d8
Merge pull request #80931 from LEXUGE/master
...
smartdns: init at 30
2020-03-15 15:36:05 +01:00
R. RyanTM
41742c85ec
clash: 0.17.1 -> 0.18.0
2020-03-14 23:34:23 +00:00
Michiel Leenaars
2410dbb3c7
Unbound: 1.9.5 -> 1.10.0
2020-03-14 23:32:04 +00:00
Ryan Mulligan
94a67e67b8
Merge pull request #82532 from r-ryantm/auto-update/croc
...
croc: 6.4.10 -> 8.0.3
2020-03-14 12:30:15 -07:00
Pascal Bach
337b35707d
minio-client: 2019-01-30 -> 2020-03-06
2020-03-14 16:50:29 +00:00
R. RyanTM
281dd8bd44
ntp: 4.2.8p13 -> 4.2.8p14
2020-03-14 16:26:40 +00:00
gnidorah
41543d88ca
phodav: 2.3 -> 2.4
2020-03-14 09:27:10 +03:00
R. RyanTM
7f255ec99d
frp: 0.31.2 -> 0.32.0
2020-03-14 05:38:02 +00:00
R. RyanTM
38d8eb2544
dnsproxy: 0.20.0 -> 0.23.7
2020-03-14 04:51:44 +00:00
R. RyanTM
ba957840f6
croc: 6.4.10 -> 8.0.3
2020-03-14 04:34:01 +00:00
Lancelot SIX
506be57540
mailutils: 3.8 -> 3.9
...
This is a bugfix release.
See https://lists.gnu.org/archive/html/info-gnu/2020-03/msg00007.html
for details.
2020-03-13 20:54:36 +00:00
Maximilian Bosch
5c066f9bfb
wireguard-go: 0.0.20191012 -> 0.0.20200121
2020-03-13 20:59:53 +01:00
Emery Hemingway
18281a28bd
yggdrasil: 0.3.12 -> 0.3.13
2020-03-12 21:39:38 +01:00
Harry Ying
25300d75be
smartdns: init at 30
2020-03-13 00:13:12 +08:00
Jan Tojnar
9d22d1d6f3
Merge pull request #81931 from andir/ppp
...
ppp: 2.4.7 -> 2.4.8 & CVE-2020-8597 fix
2020-03-10 21:10:53 +01:00
R. RyanTM
d0f3de4f23
arping: 2.20 -> 2.21
2020-03-10 20:27:42 +01:00
Matt Layher
13964b07ad
corerad: 0.2.1 -> 0.2.2
2020-03-09 20:01:51 -07:00
Mario Rodas
977a5bd038
Merge pull request #82101 from bhipple/u/rust-cargo-httplz
...
httplz: upgrade cargo fetcher and cargoSha256
2020-03-08 22:31:03 -05:00
Benjamin Hipple
5c6081efdf
httplz: upgrade cargo fetcher and cargoSha256
2020-03-08 22:04:15 -04:00
Benjamin Hipple
053e735b3c
gnirehtet: upgrade cargo fetcher and cargoSha256
2020-03-08 21:25:21 -04:00
Frederik Rietdijk
0eb0ddc4db
Merge staging-next into master
2020-03-08 08:11:01 +01:00
R. RyanTM
5a0bbfa7f2
par2cmdline: 0.8.0 -> 0.8.1
2020-03-07 09:00:05 +01:00
Andreas Rammhold
142c3153f7
ppp: apply patch for CVE-2020-8597
...
This fixes a potential buffer overflow in the eap_{request,response}
functions.
2020-03-06 23:35:18 +01:00
Andreas Rammhold
caffd51048
ppp: 2.4.7 -> 2.4.8
2020-03-06 23:33:43 +01:00
R. RyanTM
bce33c5d74
libreswan: 3.30 -> 3.31
2020-03-06 19:37:20 +00:00
Frederik Rietdijk
188c3a4d03
Merge staging-next into staging
2020-03-06 07:09:30 +01:00
Mario Rodas
d472a32752
Merge pull request #81798 from r-ryantm/auto-update/haproxy
...
haproxy: 2.1.2 -> 2.1.3
2020-03-05 19:28:08 -05:00
Ryan Mulligan
058023b993
Merge pull request #81837 from r-ryantm/auto-update/findomain
...
findomain: 1.4.1 -> 1.4.2
2020-03-05 11:22:35 -08:00
R. RyanTM
6c20f4def3
findomain: 1.4.1 -> 1.4.2
2020-03-05 18:36:27 +00:00
Ryan Mulligan
10dfd5a8c4
Merge pull request #81760 from r-ryantm/auto-update/eternal-terminal
...
eternal-terminal: 6.0.6 -> 6.0.7
2020-03-05 07:46:50 -08:00
R. RyanTM
e08b7fff16
haproxy: 2.1.2 -> 2.1.3
2020-03-05 04:38:58 +00:00
R. RyanTM
c522b865b9
eternal-terminal: 6.0.6 -> 6.0.7
2020-03-04 20:39:16 +00:00
Jan Tojnar
1a44e325d2
Merge branch 'staging-next' into staging
2020-03-04 21:24:05 +01:00
Emery Hemingway
ea15605aaa
stubby: 0.2.6 -> 0.3.0
2020-03-04 11:21:22 +01:00
R. RyanTM
fe898d5f76
modemmanager: 1.12.4 -> 1.12.6
2020-03-03 07:42:09 +01:00
Profpatsch
2167ed8aac
httpie: add fish and bash completions
2020-03-02 01:16:54 +01:00
Profpatsch
9176f20bc3
httpie: add manpage and html docs
...
httpie has quite extensive documentation in form of its rst readme.
With docutils it’s quite easy to convert to html.
We can also convert it to a manpage, which makes the documentation
accessible from the command line (even though it’s not quite standard
format as far as manpages go; however a lot better than nothing).
2020-03-02 00:47:23 +01:00
Maximilian Bosch
c3b331a777
bandwhich: 0.11.0 -> 0.12.0
...
https://github.com/imsnif/bandwhich/releases/tag/0.12.0
2020-03-01 15:14:46 +01:00
Frederik Rietdijk
33133b2667
Merge pull request #81167 from NixOS/staging-next
...
Staging next
2020-03-01 13:45:30 +01:00
Mario Rodas
3a8e954e29
Merge pull request #81251 from bhipple/u/rust-cargo-bukubrow
...
bukubrow: upgrade cargo fetcher and cargoSha256
2020-02-29 19:33:09 -05:00
Mario Rodas
60cfad09ca
Merge pull request #81349 from r-ryantm/auto-update/openfortivpn
...
openfortivpn: 1.11.0 -> 1.12.0
2020-02-29 18:18:51 -05:00
Frederik Rietdijk
79217339d2
Merge master into staging-next
2020-02-29 15:29:11 +01:00
R. RyanTM
aab3d3399d
openfortivpn: 1.11.0 -> 1.12.0
2020-02-29 06:04:16 +00:00
Maximilian Bosch
20c393aaec
findomain: 1.4.0 -> 1.4.1
2020-02-28 20:58:36 +01:00
Maximilian Bosch
01d51ae147
Merge pull request #81245 from bhipple/u/rust-cargo-findomain
...
findomain: upgrade cargo fetcher and cargoSha256
2020-02-28 20:20:31 +01:00
Jan Tojnar
bb701376cf
Merge branch 'master' into staging-next
2020-02-28 11:30:44 +01:00
Benjamin Hipple
38d58b2917
shadowsocks-rust: upgrade cargo fetcher and cargoSha256
...
Infra upgrade as part of #79975 ; no functional change expected.
2020-02-28 00:22:54 -08:00
Benjamin Hipple
4c754602cf
tdns-cli: upgrade cargo fetcher and cargoSha256
...
Infra upgrade as part of #79975 ; no functional change expected.
2020-02-28 00:19:47 -08:00
Benjamin Hipple
28fa2d6f6f
tox-node: upgrade cargo fetcher and cargoSha256
...
Infra upgrade as part of #79975 ; no functional change expected.
2020-02-28 00:15:46 -08:00
Benjamin Hipple
25d102df2c
bandwhich: upgrade cargo fetcher and cargoSha256
...
Infra upgrade as part of #79975 ; no functional change expected.
2020-02-28 00:13:43 -05:00
Benjamin Hipple
b39dbff3bd
bukubrow: upgrade cargo fetcher and cargoSha256
...
Infra upgrade as part of #79975 ; no functional change expected.
2020-02-27 23:27:13 -05:00
Benjamin Hipple
e0b072a36a
findomain: upgrade cargo fetcher and cargoSha256
...
Infra upgrade as part of #79975 ; no functional change expected.
2020-02-27 23:05:34 -05:00
Pavol Rusnak
205f42b142
openssh_hpn: 7.8p1 -> 8.1p1
...
fix build failure
2020-02-27 10:21:52 +01:00
Pavol Rusnak
44864b292f
openssh: 8.1p1 -> 8.2p1
...
https://www.openssh.com/txt/release-8.2
add libfido2 to enable hardware tokens support added in this release
2020-02-27 10:21:52 +01:00
Frederik Rietdijk
ef156f7a8b
Merge staging-next into staging
2020-02-27 10:15:34 +01:00
Mario Rodas
964a12cb06
Merge pull request #80745 from r-ryantm/auto-update/whois
...
whois: 5.5.5 -> 5.5.6
2020-02-26 20:07:49 -05:00
Yegor Timoshenko
d7a03511b6
Merge pull request #79281 from filalex77/hey-0.1.3
...
hey: init at 0.1.3
2020-02-27 02:15:37 +03:00
Oleksii Filonenko
180b61b047
hey: init at 0.1.3
2020-02-26 21:59:28 +02:00
Benjamin Hipple
a93903de39
boringtun: upgrade cargo fetcher and cargoSha256
...
Infra upgrade as part of #79975 ; no functional change expected.
2020-02-25 22:18:50 -05:00
Florian Klink
2debd30cf0
Merge pull request #80986 from worldofpeace/vde2-openssl
...
vde2: fix build with latest openssl
2020-02-25 14:40:44 -08:00
Edward Tjörnhammar
538ec50639
i2pd: 2.29.0 -> 2.30.0
2020-02-25 19:46:06 +01:00
worldofpeace
e5c3bb4103
vde2: update homepage
2020-02-24 18:36:50 -05:00
snicket2100
9db6ae02c2
siege: 4.0.4 -> 4.0.5
2020-02-24 23:27:55 +01:00
worldofpeace
06238ced3c
vde2: fix build with latest openssl
2020-02-24 17:06:56 -05:00
elseym
dcd4395009
termshark: 1.0.0 -> 2.1.1
2020-02-24 13:20:08 +01:00
R. RyanTM
68481e3a02
nfdump: 1.6.18 -> 1.6.19
2020-02-23 13:59:04 -08:00
R. RyanTM
f4b1d118a4
libreswan: 3.29 -> 3.30
2020-02-23 13:56:00 -08:00
Franz Pletz
02fc8dc4dc
Merge pull request #79882 from petabyteboy/feature/netifd
...
update libubox, uqmi; init uci, ubus, netifd
2020-02-23 17:11:59 +00:00
R. RyanTM
72c2f16d76
inadyn: 2.5 -> 2.6
2020-02-22 21:47:15 +00:00
R. RyanTM
66df83f4f7
cassowary: 0.3.0 -> 0.7.0
2020-02-22 08:11:03 +00:00
R. RyanTM
26319e6504
whois: 5.5.5 -> 5.5.6
2020-02-21 17:07:25 +00:00
Mario Rodas
581a20c197
Merge pull request #80407 from zowoq/amass
...
amass: 3.4.2 -> 3.4.4
2020-02-20 21:19:13 -05:00
Ryan Mulligan
c5b934ce9e
Merge pull request #80558 from r-ryantm/auto-update/eternal-terminal
...
eternal-terminal: 6.0.5 -> 6.0.6
2020-02-20 05:08:14 -08:00
Peter Hoeg
e65e7b137e
Merge pull request #77620 from peterhoeg/d/netalyzr
...
netalyzr: service no longer exists as of 2019-03
2020-02-20 20:26:18 +08:00
R. RyanTM
d7ceb1738e
networkmanager: 1.22.6 -> 1.22.8
2020-02-20 11:49:08 +00:00
R. RyanTM
b756e7282d
eternal-terminal: 6.0.5 -> 6.0.6
2020-02-19 19:25:51 +00:00
Vladimír Čunát
944775e0c5
dnsmasq: correct previous change for Darwin
...
I was a bit hasty in commit 482642a73
.
2020-02-19 15:20:46 +01:00
Vladimír Čunát
482642a733
dnsmasq: fixup build after kernel header changes
...
https://github.com/torvalds/linux/commit/0768e17073d
2020-02-19 13:14:04 +01:00
Vladimír Čunát
1b96f9b68c
Merge #80460 : maintainers: fix 0x4A6F
2020-02-18 21:28:27 +01:00
Will Dietz
bdcee483b6
nm-tray: init at 0.4.3
2020-02-18 15:04:21 +01:00
zowoq
bd4ffbcd26
amass: 3.4.2 -> 3.4.4
...
https://github.com/OWASP/Amass/releases/tag/v3.4.3
https://github.com/OWASP/Amass/releases/tag/v3.4.4
2020-02-18 15:00:37 +10:00
Marek Mahut
f9388a7634
Merge pull request #79937 from mmahut/eggdrop
...
eggdrop: 1.6.21-nix1 -> 1.8.4
2020-02-14 09:49:06 +01:00
Benjamin Hipple
eb11feaa0b
treewide: change fetchCargoTarball default to opt-out
...
Changes the default fetcher in the Rust Platform to be the newer
`fetchCargoTarball`, and changes every application using the current default to
instead opt out.
This commit does not change any hashes or cause any rebuilds. Once integrated,
we will start deleting the opt-outs and recomputing hashes.
See #79975 for details.
2020-02-13 22:41:37 -08:00
Benno Fünfstück
0d8210e0ed
burpsuite: 3.1.07 -> 2020.1
2020-02-13 10:34:25 +01:00
Marek Mahut
b4749d221a
eggdrop: 1.6.21-nix1 -> 1.8.4
2020-02-12 18:52:32 +01:00
Milan Pässler
d24c4038da
netifd: init at unstable-2020-01-18
2020-02-12 02:12:05 +01:00
Milan Pässler
e9cb7037f9
uqmi: 2016-12-19 -> unstable-2019-06-27
2020-02-12 02:03:22 +01:00
0x4A6F
4b33402d30
maintainers: fix 0x4A6F
2020-02-11 19:29:51 +01:00
Oleksii Filonenko
46db47e5f7
findomain: 0.9.3 -> 1.4.0
2020-02-10 19:56:18 +01:00
Frederik Rietdijk
ec3edaf7b5
Merge master into staging-next
2020-02-10 12:55:47 +01:00
Andrew Childs
0780537546
socat: remove patch that is now in upstream
2020-02-10 12:23:19 +09:00
Matt Layher
e76101046a
corerad: 0.1.9 -> 0.2.1
2020-02-09 18:09:22 -08:00
Frederik Rietdijk
3846896084
Merge pull request #79293 from NixOS/staging-next
...
Staging next (with glibc 2.30)
2020-02-09 16:40:16 +01:00
Frederik Rietdijk
cffec212dc
Merge staging into staging-next
2020-02-09 16:38:32 +01:00
Florian Klink
3b17e6559b
Merge pull request #79554 from r-ryantm/auto-update/modem-manager
...
modemmanager: 1.12.2 -> 1.12.4
2020-02-09 15:10:13 +01:00
Linus Heckemann
dcd11c9496
Merge pull request #79028 from lheckemann/rtptools
...
rtptools: init at 1.22
2020-02-09 13:43:30 +01:00
R. RyanTM
db4ec5044d
lldpd: 1.0.4 -> 1.0.5
2020-02-09 13:13:18 +01:00
Frederik Rietdijk
531a48ebdb
Merge master into staging-next
2020-02-09 11:00:29 +01:00
Piotr Bogdan
a8eb2e4fb2
tcptraceroute: remove pbogdan from maintainers
2020-02-09 09:50:35 +00:00
R. RyanTM
2ef9818b0e
haproxy: 2.0.10 -> 2.1.2
2020-02-09 09:55:52 +01:00
lewo
1991c62ffc
Merge pull request #79216 from tomoyat1/telepresence-0.104
...
telepresence: 0.101 -> 0.104
2020-02-09 09:50:42 +01:00
Frederik Rietdijk
03755ed59a
Merge master into staging-next
2020-02-09 09:17:51 +01:00
R. RyanTM
0f5a51d3c2
modemmanager: 1.12.2 -> 1.12.4
2020-02-08 19:11:55 +00:00
Atemu
64ce6b2e8a
dnscrypt-proxy2: Add Atemu to the maintainers
2020-02-07 21:00:45 +01:00
Frederik Rietdijk
30f0909e3a
Merge master into staging-next
2020-02-07 19:27:52 +01:00
Ryan Mulligan
c55554c167
Merge pull request #79432 from r-ryantm/auto-update/frp
...
frp: 0.31.1 -> 0.31.2
2020-02-07 05:10:45 -08:00
Maximilian Bosch
a1f672dcfd
Merge pull request #79429 from xwvvvvwx/wireguard-rm-libmnl
...
wireguard: rm libmnl from buildInputs
2020-02-07 11:38:01 +01:00
Bas van Dijk
a7ae4cbd00
Merge pull request #79361 from bbigras/grpcurl
...
grpcurl: 1.0.0 -> 1.4.0
2020-02-07 11:32:43 +01:00
R. RyanTM
62cc370279
frp: 0.31.1 -> 0.31.2
2020-02-07 09:18:02 +00:00
David Terry
3bad19b676
wireguard: rm libmnl from buildInputs
...
Inlined into the source as of v1.0.20200206.
See: https://lists.zx2c4.com/pipermail/wireguard/2020-February/004963.html
2020-02-07 09:02:14 +01:00
worldofpeace
12b8981d2a
Merge pull request #79085 from Atemu/dnscrypt-proxy2-2.0.39
...
dnscrypt-proxy2: 2.0.36 -> 2.0.39
2020-02-06 17:42:44 -05:00
Frederik Rietdijk
38cf6eac19
Merge master into staging-next
2020-02-06 19:43:36 +01:00
Maximilian Bosch
92d6ffcb64
wireguard-tools: 1.0.20200121 -> 1.0.20200206
...
https://lists.zx2c4.com/pipermail/wireguard/2020-February/004963.html
2020-02-06 18:29:56 +01:00
Bruno Bigras
005c829a9f
grpcurl: 1.0.0 -> 1.4.0
2020-02-06 11:07:00 -05:00
Atemu
823d695585
dnscrypt-proxy2: 2.0.36 -> 2.0.39
2020-02-06 11:38:15 +01:00
zowoq
4ccc640dd3
megatools: build on darwin, update src ( #79254 )
2020-02-05 15:20:52 -05:00
Vladimír Čunát
48a997cd76
Merge #66528 : glibc: 2.27 -> 2.30 (into staging)
...
Includes update of stdenv bootstap tools (for three main platforms)
and many package fixes with new glibc.
2020-02-05 13:41:09 +01:00
R. RyanTM
e75b7ed17e
dhcp: 4.4.1 -> 4.4.2
2020-02-05 10:43:09 +01:00
R. RyanTM
d0790e9fd3
openresolv: 3.9.2 -> 3.10.0
2020-02-05 10:42:43 +01:00
Frederik Rietdijk
76a439239e
Merge master into staging-next
2020-02-05 10:28:52 +01:00
Symphorien Gibol
b7f27cb61a
nixos/iodine: add test
2020-02-04 20:54:29 +01:00
Symphorien Gibol
683fa30931
network-manager-iodine: 1.2.0 -> 2019-11-05
...
the released version is old and cannot reconnect after the first
connection is closed. This is fixed in master.
2020-02-04 20:54:12 +01:00
Symphorien Gibol
2a04e690bc
iodine: 1.2.0 -> 2019-09-27
...
Adds ipv6 support
2020-02-04 20:53:59 +01:00
Tomoya Tabuchi
71d4420e20
telepresence: 0.101 -> 0.104
...
Bump telepresence to 0.104, which contains bug fixes.
2020-02-04 20:50:55 +09:00
worldofpeace
74e4cb7ea4
Merge pull request #78543 from Atemu/dnscrypt-proxy2-service
...
nixos/dnscrypt-proxy2: init
2020-02-02 23:02:06 -05:00
worldofpeace
39e893c468
dnscrypt-proxy: remove
2020-02-02 21:51:19 -05:00
R. RyanTM
75a9868dbe
socat: 1.7.3.3 -> 1.7.3.4
2020-02-02 22:00:23 +01:00
Frederik Rietdijk
e4c28f78e7
Merge staging-next into staging
2020-02-02 15:33:13 +01:00
worldofpeace
f025935dc6
networkmanager: reorganize directory
...
This was a bit of a mess.
2020-02-01 17:19:47 -05:00
worldofpeace
6aa47aa042
networkmanager: 1.22.4 -> 1.22.6
...
https://gitlab.freedesktop.org/NetworkManager/NetworkManager/blob/1.22.6/NEWS
2020-02-01 17:16:02 -05:00
Linus Heckemann
6a3cf87e65
rtptools: init at 1.22
2020-02-01 19:24:13 +01:00
Maximilian Bosch
ea8ae88f04
Merge branch 'staging' into glibc230
2020-02-01 17:42:03 +01:00
xrelkd
05a3625d36
brook: 20200102 -> 20200201
2020-02-01 13:52:20 +08:00
Marek Mahut
aada254bc8
Merge pull request #78948 from mmahut/vegeta
...
vegeta: init at 12.7.0
2020-01-31 18:30:47 +01:00
Mario Rodas
a879bd6517
Merge pull request #78909 from r-ryantm/auto-update/axel
...
axel: 2.17.6 -> 2.17.7
2020-01-31 08:31:04 -05:00
Marek Mahut
dd5b64a61a
vegeta: init at 12.7.0
2020-01-31 10:42:58 +01:00
R. RyanTM
8d510b3424
axel: 2.17.6 -> 2.17.7
2020-01-30 20:22:35 +00:00