nixpkgs/pkgs/tools/networking
Profpatsch bf33c0e62e skawarePackages: Fall 2021 release
Maintainers Notes below.

~~~

 Hello,

 New versions of all the skarnet.org packages are available.

 skalibs has undergone a major update, with a few APIs having disappeared,
and others having changed. Compatibility with previous versions is  *not*
assured.
 Consequently, all the rest of the skarnet.org software has undergone
at least a release bump, in order to build with the new skalibs. But
some packages also have new functionality added (hence, a minor bump),
and others also have their own incompatible changes (hence, a major bump).

 The new versions are the following:

skalibs-2.11.0.0          (major)
nsss-0.2.0.0              (major)
utmps-0.1.0.3             (release)
execline-2.8.1.0          (minor)
s6-2.11.0.0               (major)
s6-rc-0.5.2.3             (release)
s6-portable-utils-2.2.3.3 (release)
s6-linux-utils-2.5.1.6    (release)
s6-linux-init-1.0.6.4     (release)
s6-dns-2.3.5.2            (release)
s6-networking-2.5.0.0     (major)
mdevd-0.1.5.0             (minor)
bcnm-0.0.1.4              (release)
dnsfunnel-0.0.1.2         (release)

Additionally, a new package has been released:
smtpd-starttls-proxy-0.0.1.0

 Dependencies have all been updated to the latest versions. They are,
this time, partially strict: libraries and binaries may build with older
releases of their dependencies, but not across major version bumps. The
safest approach is to upgrade everything at the same time.

 You do not need to recompile your s6-rc service databases or recreate
your s6-linux-init run-images.
 You should restart your supervision tree after upgrading skalibs and s6,
as soon as is convenient for you.

 Details of major and minor package changes follow.

* skalibs-2.11.0.0
  ----------------

 - A lot of obsolete or useless functionality has been removed:
libbiguint, rc4, md5, iobuffer, skasigaction, environ.h and
getpeereid.h headers, various functions that have not proven their
value in a while.
 - Some functions changed signatures or changed names, or both.
 - All custom types ending in _t have been renamed, to avoid treading on
POSIX  namespace. (The same change has not been done yet in other
packages,  but skalibs was the biggest offender by far.)
 - Signal functions have been deeply reworked.
 - cdb has been reworked, the API is now more user-friendly.
 - New functions have been added.

 The deletion of significant portions of code has made skalibs leaner.
libskarnet.so has dropped under 190 kB on x86_64.
 The cdb rewrite on its own has helped reduce an important amount of
boilerplate in cdb-using code.
 All in all, code linked against the new  skalibs should be slightly
smaller and use a tiny bit less RAM.

 https://skarnet.org/software/skalibs/
 git://git.skarnet.org/skalibs

* nsss-0.2.0.0
  ------------

 - Bugfixes.
 - nsss-switch wire protocol slightly modified, which is enough to
warrant a major version bump.
 - _r functions are now entirely thread-safe.
 - Spawned nsssd programs are now persistent and only expire after a
timeout on non-enumeration queries. This saves a lot of forking with
applications that can call  primitives such as getpwnam() repeatedly, as
e.g. mdevd does when  initially parsing its configuration file.
 - New nsssd-switch program, implementing real nsswitch functionality
by dispatching queries to various backends according to a script.
It does not dlopen a single library or read a single config file.

 https://skarnet.org/software/nsss/
 git://git.skarnet.org/nsss

* execline-2.8.1.0
  ----------------

 - Bugfixes.
 - New binary: case. It compares a value against a series of regular
expressions, executing into another command line on the first match.

 https://skarnet.org/software/execline/
 git://git.skarnet.org/execline

* s6-2.11.0.0
  -----------

 - Bugfixes.
 - Some libs6 header names have been simplified.
 - s6-svwait now accepts -r and -R options.
 - s6-supervise now reads an optional lock-fd file in the service
directory; if it finds one, the first action of the service is to take
a blocking lock. This prevents confusion when a controller process dies
while still leaving workers holding resources; it also prevents log
spamming on user mistakes (autobackgrounding services, notably).
 - New binaries: s6-socklog, s6-svlink, s6-svunlink. The former is a
rewrite of smarden.org's socklog program, in order to implement a fully
functional syslogd with only s6 programs. The latter are tools that start
and stop services by symlinking/unlinking service directories from a
scan directory, in order to make it easier to integrate s6-style services
in boot scripts for sequential service managers such as OpenRC.

 https://skarnet.org/software/s6/
 git://git.skarnet.org/s6

* s6-networking-2.5.0.0
  ---------------------

 - Bugfixes.
 - minidentd has been removed. It was an old and somehow still buggy
piece of  code that was only hanging around for nostalgia reasons.
 - Full support for client certificates. Details of the client
certificate are transmitted to the application via environment
variables (or via an environment string in the case of opportunistic
TLS).
 - Full SNI support, including server-side. (That involved a deep dive
into the bearssl internals, which is why it took so long.) The filenames
containing secret keys and certificates for <domain> are read in the
environment variables KEYFILE:<domain> and CERTFILE:<domain>.

 Complete client certificate and SNI support now make the TLS part of
s6-networking a fully viable replacement of stunnel and other similar
TLS tunneling tools. This is most interesting when s6-networking is
built against bearssl, which uses about 1/9 of the resources that OpenSSL
needs.

 https://skarnet.org/software/s6-networking/
 git://git.skarnet.org/s6-networking

* mdevd-0.1.5.0
  -------------

 - A new option to mdevd is available: -O <nlgroups>.
This option makes mdevd rebroadcast uevents to a netlink group (or set
of netlink groups) once they have been handled. This allows applications
to read uevents from a netlink group *after* the device manager is done
with them. This is useful, for instance, when pairing mdevd with
libudev-zero for full udev emulation.
 - The * and & directives, which previously were only triggered by
"add" and "remove" actions, are now triggered by *all* action types.
This gives users full scripting access to any event, which can be
used to implement complex rules similar to udev ones.

 These two changes make it possible to now build a full-featured desktop
system based on mdevd + libudev-zero, without running systemd-udevd or
eudev.

 https://skarnet.org/software/mdevd/
 git://git.skarnet.org/mdevd

* smtpd-starttls-proxy-0.0.1.0
  ----------------------------

 This new package, in conjunction with the latest s6-networking,
implements the STARTTLS functionality for inetd-like mail servers that
do not already support it. (Currently only tested with qmail-smtpd.)
If you have noticed that sending mail to skarnet.org supports STARTTLS
now, it is thanks to this little piece of software.

 https://skarnet.org/software/smtpd-starttls-proxy/
 git://git.skarnet.org/smtpd-starttls-proxy

 Enjoy,
 Bug-reports welcome.

 Laurent
2021-09-27 14:28:43 +02:00
..
6tunnel maintainers: rename filalex77 -> Br1ght0ne 2020-11-17 13:09:31 +02:00
acme-client fix tarball job evaluation for aarch64-darwin 2021-06-03 10:52:46 +02:00
ahcpd tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
aircrack-ng tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
airfield treewide: makeWrapper buildInputs to nativeBuildInputs 2021-02-19 20:09:16 +07:00
altermime altermime: fix darwin build 2021-03-18 23:02:07 +07:00
amass amass: 3.13.3 -> 3.13.4 (#130727) 2021-07-20 11:06:10 +02:00
anevicon anevicon: fix darwin build 2021-05-11 20:40:33 +02:00
argus pkgs/tools: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
argus-clients argus-clients: Fix build, build client tools 2021-02-24 09:48:58 -05:00
aria2 aria: 1.35.0 -> 1.36.0 2021-08-21 10:38:42 +00:00
arping arping: 2.21 -> 2.22 2021-06-30 08:16:08 +00:00
arpoison tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
assh assh: buildFlagsArray -> ldflags 2021-08-21 18:23:50 +10:00
atftp atftp: enable tests 2021-09-18 15:52:54 +01:00
atinout atinout: fix darwin build 2021-05-16 15:06:12 -07:00
autossh autossh: add license 2021-02-02 14:38:15 +01:00
axel pkgs/tools: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
babeld babeld: start maintaining the package 2021-04-27 14:11:45 +02:00
bacnet-stack treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
badvpn treewide: fix double quoted strings in meta.description 2021-01-24 19:56:59 +07:00
bandwhich bandwhich: add SuperSandro2000 as maintainer 2021-08-07 12:22:46 +02:00
bgpdump bgpdump: 1.6.0 -> 1.6.2 2021-08-22 16:16:27 +02:00
bgpq3 treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
bgpq4 bgpq4: 0.0.7 -> 1.2 2021-08-20 17:08:49 +00:00
biosdevname treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
bitmask-vpn bitmask-vpn: init at 0.21.6 2021-09-22 00:04:12 +09:00
bore bore: init at 0.3.3 (#129295) 2021-07-06 22:05:37 +02:00
boringtun treewide: fix cargoSha256/cargoHash 2021-05-08 00:36:37 -07:00
boundary boundary: 0.6.0 -> 0.6.1 2021-09-23 04:29:19 +00:00
brook brook: 20200201 -> 20210701 2021-08-22 17:17:51 +08:00
bsd-finger tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
bud bud: use python2 2021-03-25 11:10:31 +01:00
bukubrow treewide: fix cargoSha256/cargoHash 2021-05-08 00:36:37 -07:00
bully treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
burpsuite burpsuite: 2021.8 -> 2021.8.1 2021-08-14 06:33:06 +03:00
bwm-ng bwm_ng: 0.6.1 -> 0.6.3 2021-08-30 11:03:31 +02:00
cadaver tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
calendar-cli calendar-cli: init at 0.12.0 2021-05-04 10:04:56 +02:00
cantoolz cantoolz: init at 3.7.0 2021-01-17 11:40:49 +01:00
carddav-util tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
cassowary treewide: buildFlagsArray -> ldflags 2021-08-26 21:35:06 +10:00
cbftp cbftp: init at 1173 2021-08-14 14:10:06 -03:00
cdpr cdpr: init at 2.4 2021-07-21 15:25:21 +02:00
changetower changetower: init at 1.0 2021-08-23 19:10:08 +02:00
chaos chaos: init at 0.1.9 (#124306) 2021-05-29 03:50:36 +02:00
checkip checkmate: init at 0.4.1 2021-09-05 00:54:05 +02:00
chisel treewide: buildFlagsArray -> ldflags 2021-08-26 21:35:06 +10:00
chrony chrony: 4.0 -> 4.1 2021-05-14 09:29:20 +00:00
circus treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
cjdns pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
cksfv cksfv: format, cleanup 2021-08-12 01:18:19 +02:00
clash treewide: buildFlagsArray -> ldflags 2021-08-26 21:35:06 +10:00
cloud-custodian treewide: use pythonPackages.python-dateutil instead of pythonPackages.dateutil 2021-07-03 13:45:57 +02:00
cmst treewide: remove unnecessary enableParallelBuilding when using qmake 2021-07-20 10:32:58 +07:00
cntlm pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
cocom cocom: init at 1.1.3 2021-06-26 23:53:41 +02:00
connect treewide: add targetPrefix to hardcoded references to CC=cc 2021-02-20 01:01:46 +07:00
connman connman: 1.39 -> 1.40 2021-06-18 18:50:28 +00:00
corerad corerad: 0.3.3 -> 0.3.4 2021-09-03 11:10:05 -04:00
corkscrew corkscrew: name -> pname 2021-07-09 16:22:50 +02:00
crackle crackle: init at unstable-2020-12-13 2021-05-24 00:30:49 +08:00
croc croc: 9.2.1 -> 9.3.0 2021-08-16 22:01:52 +02:00
curl pkgsStatic.curl: fix build 2021-09-07 16:48:03 +09:00
curl-unix-socket tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
curlie curlie: 1.6.0 -> 1.6.2 2021-07-11 03:22:34 +00:00
darkstat treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
davix pkgs/tools: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
dd-agent datadog-agent: Add process to default integrations. 2021-09-11 15:32:14 -07:00
ddclient Merge pull request #119713 from uonr/master 2021-07-13 22:03:12 +02:00
dhcp dhcp: was relicensed from ISC to MPL2.0 in 2018 2021-07-11 22:11:34 +02:00
dhcpcd treewide: ensure pre/post phase hooks are strings 2021-08-20 19:08:42 -04:00
dhcpdump tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
dhcping dhcping: expand platforms to unix 2021-03-18 23:02:06 +07:00
dibbler pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
dirb pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
djbdns treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
dnschef dnschef: init at 0.4 2021-08-05 07:12:10 -06:00
dnscrypt-proxy2 dnscrypt-proxy2: 2.0.45 -> 2.1.0 2021-08-15 03:26:21 +00:00
dnscrypt-wrapper pkgs/tools: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
dnsmasq dnsmasq: 2.84 -> 2.85 2021-04-24 09:52:50 +02:00
dnsperf dnsperf: 2.5.0 -> 2.5.2 2021-03-30 17:06:40 +02:00
dnsproxy dnsproxy: 0.39.5 -> 0.39.7 2021-09-22 04:44:55 +00:00
dnstop tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
dnstracer pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
dnstwist dnstwist: init at 20201228 2021-04-21 10:44:06 +02:00
dnsviz dnsviz: 0.9.2 -> 0.9.3 2021-03-12 08:56:30 +01:00
dogdns treewide: fix cargoSha256/cargoHash 2021-05-08 00:36:37 -07:00
driftnet driftnet: 1.1.5 -> 1.3.0 2021-01-31 18:21:56 +07:00
drill treewide: fix cargoSha256/cargoHash 2021-05-08 00:36:37 -07:00
dropbear tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
dsniff dsniff: 2.4b1+debian-29 -> 2.4b1+debian-30 2021-03-07 00:31:43 +01:00
easyrsa treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
eggdrop eggdrop: 1.8.4 -> 1.9.1 2021-08-08 10:26:38 +00:00
email tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
eternal-terminal eternal-terminal: 6.1.7 -> 6.1.8 2021-05-29 11:27:57 +00:00
evillimiter evillimiter: init at 1.5.0 2020-12-29 23:43:57 +01:00
fakeroute treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
fastd fastd: 21 -> 22 (#128301) 2021-06-27 14:38:34 +02:00
fdm treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
ferm ferm: 2.5.1 -> 2.6 2021-02-14 17:31:21 +00:00
filegive filegive: use https 2021-08-12 01:19:38 +02:00
findomain findomain: 4.3.0 -> 5.0.0 2021-08-10 14:14:37 +00:00
flannel cni-plugin-flannel: unstable-2021-09-10 -> 1.0 2021-09-21 18:59:50 +10:00
flvstreamer tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
fping tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
freebind treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
frp frp: 0.36.1 -> 0.37.1 2021-08-08 11:49:40 +00:00
gandi-cli gandi-cli: 1.5 -> 1.6 2021-01-19 08:11:04 +01:00
getmail treewide: remove meta.version 2021-07-18 00:07:38 +02:00
getmail6 getmail6: 6.18 -> 6.18.3 2021-07-07 13:22:08 +02:00
ghostunnel ghostunnel: format 2021-08-02 10:58:45 +02:00
globalprotect-openconnect globalprotect-openconnect: init at 1.2.6 2021-06-02 19:22:13 -04:00
gmrender-resurrect gmrender-resurrect: 0.0.8 -> 0.0.9 2021-04-15 23:50:17 -07:00
gnirehtet treewide: fix cargoSha256/cargoHash 2021-05-08 00:36:37 -07:00
go-shadowsocks2 go-shadowsocks2: 0.1.3 -> 0.1.4 2021-03-11 15:19:54 +00:00
gobgp gobgp: 2.30.0 -> 2.31.0 2021-09-16 09:33:24 +00:00
goimapnotify goimapnotify: 2.0 -> 2.3.2 2021-08-29 22:49:37 +08:00
goklp treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
goreplay treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
gping Merge remote-tracking branch 'origin/master' into staging-next 2021-05-16 18:27:14 -07:00
grpcui treewide: buildFlagsArray -> ldflags 2021-08-26 21:35:06 +10:00
grpcurl treewide: buildFlagsArray -> ldflags 2021-08-26 21:35:06 +10:00
guardian-agent treewide: editorconfig fixes 2021-01-21 13:29:54 +10:00
gupnp-tools gnome: rename from gnome3 2021-05-08 09:47:42 +02:00
gvpe iproute: deprecate alias 2021-04-04 01:43:46 +02:00
gvproxy gvproxy: init at 0.1.0 2021-08-24 06:59:20 +10:00
hans treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
haproxy haproxy: 2.3.13 -> 2.3.14 2021-09-19 13:00:16 +02:00
hey hey: 0.1.3 -> 0.1.4 2020-11-26 06:56:44 +00:00
horst pkgs/tools: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
hp2p hp2p: init at 3.3 2021-08-26 11:03:54 +02:00
hping pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
hss treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
htpdate treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
http-prompt pythonPackages: normalise prompt_toolkit 2021-07-23 16:36:39 +02:00
http2tcp http2tcp: init at 0.5 2020-03-17 11:44:17 -07:00
httperf treewide: remove nand0p as maintainer 2021-05-17 01:50:49 +02:00
httpie httpie: fix cross compilation 2021-03-05 18:14:38 +01:00
httping treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
httplab treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
httplz treewide: fix cargoSha256/cargoHash 2021-05-08 00:36:37 -07:00
httpstat httpstat: use python3 2021-04-03 17:06:09 +02:00
httptunnel treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
hue-cli treewide: add final newline 2021-01-22 07:18:04 +10:00
hurl hurl: 1.3.0 -> 1.3.1 2021-09-14 11:20:32 +00:00
hyenae tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
i2p i2p: get rid of duplicate Java Service Wrapper 2021-09-22 20:42:33 +02:00
i2pd i2pd: 2.38.0 -> 2.39.0 2021-08-24 06:36:52 +00:00
ifstat-legacy ifstat: build on darwin 2021-07-12 19:35:55 -04:00
iftop tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
igmpproxy igmpproxy: 0.2.1 -> 0.3 2021-01-19 00:39:30 +00:00
imapproxy tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
imapsync tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
inadyn inadyn: 2.7 -> 2.8.1 2021-02-03 14:57:56 +00:00
inetutils inetutils: 2.0 -> 2.2 2021-09-03 10:33:46 +09:00
innernet innernet: 1.4.1 -> 1.5.0 2021-09-17 07:54:38 +02:00
iodine pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
iouyap treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
ip2location treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
ip2unix ip2unix: 2.1.3 -> 2.1.4 2021-07-10 01:53:03 +02:00
ipcalc ipcalc: 0.4.1 -> 1.0.1 2021-08-30 19:09:36 +02:00
iperf iperf: 3.9 -> 3.10.1 (#136027) 2021-08-29 22:10:43 +02:00
ipgrep treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
ipinfo ipinfo: 2.0.2 -> 2.1.1 2021-08-19 17:59:51 +02:00
ipv6calc ipv6calc: 2.2.0 -> 3.2.0 2021-08-30 13:33:21 +02:00
isync isync: 1.4.2 -> 1.4.3 2021-07-29 21:16:40 +02:00
iwgtk iwgtk: init at 0.4 2021-07-20 21:44:41 -04:00
jnettop tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
junkie pkgs/tools: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
jwhois jwhois: fix on aarch64-darwin 2021-09-14 06:50:35 +01:00
kail treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
kapp kapp: 0.39.0 -> 0.40.0 2021-09-16 12:04:18 +00:00
kea kea: 1.9.10 -> 1.9.11 2021-09-09 21:11:23 +02:00
keepalived keepalived: 2.2.1 -> 2.2.2 2021-03-11 18:00:46 +00:00
lftp pkgs/tools: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
libnids pkgs/tools: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
libreswan libreswan: 4.4 -> 4.5 2021-08-30 09:16:31 +02:00
linkchecker pythonPackages: deprecate ConfigArgParse alias 2021-07-21 13:32:54 +02:00
linux-router linux-router: init at 0.6.2 2021-09-12 10:13:27 +02:00
lldpd lldpd: 1.0.10 -> 1.0.11 2021-05-17 11:01:43 -07:00
logmein-hamachi pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
lsh tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
lxi-tools treewide: stdenv.lib -> lib 2021-01-24 01:49:49 +01:00
lychee lychee: 0.5.0 -> 0.7.0 2021-04-22 22:25:03 +02:00
maildrop tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
mailsend treewide: fix double quoted strings in meta.description 2021-01-24 19:56:59 +07:00
mailutils mailutils: make nettools optional on darwin 2021-04-01 04:20:00 -05:00
maphosts Merge pull request #130757 from SuperSandro2000/SuperSandro2000-patch-4 2021-07-20 14:31:22 +02:00
maxscale kerberos: deprecate alias 2021-04-04 03:18:56 +02:00
mcrcon pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
mdk4 mdk4: init at unstable-2021-04-27 2021-05-26 10:54:27 +08:00
megatools pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
memtier-benchmark pkgs/tools: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
minidlna minidlna: switch from ffmpeg_3 to ffmpeg 2021-04-29 18:58:13 -07:00
minio-client minio-client: 2021-07-27T06-46-19Z -> 2021-09-02T09-21-27Z 2021-09-14 16:46:18 +00:00
minissdpd treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
miniupnpc pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
miniupnpd tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
miredo iproute: deprecate alias 2021-04-04 01:43:46 +02:00
mmsd pkgs/tools: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
modemmanager modemmanager: fix pname/directory 2021-08-10 12:06:57 +02:00
moodle-dl moodle-dl: init at 2.1.2.5 2021-03-31 07:37:35 +02:00
mosh mosh: fix on aarch64-darwin 2021-09-13 05:41:45 +01:00
mozwire treewide: fix cargoSha256/cargoHash 2021-05-08 00:36:37 -07:00
mpack tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
mtr mtr: cleanup 2021-02-12 20:35:42 +01:00
mu mu: 1.6.5 -> 1.6.6 2021-09-06 09:43:15 +02:00
mubeng mubeng: 0.4.5 -> 0.5.2 2021-08-17 11:00:22 -07:00
n2n n2n: init at 2.8 2021-07-12 00:24:35 +02:00
nat-traverse treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
nbd tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
ncftp treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
ndisc6 tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
ndjbdns pkgs/tools: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
nebula treewide: buildFlagsArray -> ldflags 2021-08-26 21:35:06 +10:00
netboot tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
netcat tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
nethogs treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
netifd libubox, ubus, uci, netifd: update (#121543) 2021-06-10 09:32:50 +02:00
netkit/tftp tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
netmask treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
netrw pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
netselect treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
netsniff-ng netsniff-ng: 0.6.7 -> 0.6.8 (#109049) 2021-01-12 15:56:36 +01:00
nettee pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
networkmanager Merge master into staging-next 2021-09-12 12:01:10 +00:00
nfdump nfdump: 1.6.22 -> 1.6.23 2021-08-17 10:54:02 -07:00
nfstrace nfstrace: fix build error 2021-05-16 14:35:22 -07:00
ngrep treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
ngrok-1 ngrok-1: buildFlags -> tags 2021-08-06 11:29:32 +10:00
ngrok-2 ngrok: fix build on aarch64-darwin 2021-07-14 11:14:12 -07:00
nikto nikto: init at 2.2.0 2021-01-31 11:35:13 +01:00
noip tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
notemap notemap: init at 1.3 2021-06-06 22:32:14 +02:00
nss-mdns tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
nss-pam-ldapd pkgs/tools: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
ntopng tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
ntp tools/networking: replace name with pname&version 2021-08-01 22:48:53 +02:00
nttcp nttcp: cleanup 2021-07-29 14:11:51 +02:00
ntttcp ntttcp: init at 1.4.0 2021-09-13 13:57:04 +02:00
nuttcp treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
nxdomain nxdomain: 1.0.1 -> 1.0.2 2021-04-26 01:06:52 +02:00
nylon tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
nyx treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
nzbget Merge pull request #132722 from aanderse/nixos/nzbget 2021-08-29 12:25:37 -04:00
oapi-codegen oapi-codegen: 1.6.0 -> 1.8.2 2021-08-15 13:23:45 +00:00
obfs4 buildGoModule packages: set doCheck = false 2020-08-10 16:02:30 +10:00
ocproxy treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
ocserv pkgs/tools: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
offlineimap offlineimap: 7.3.3 -> 7.3.4 (#136145) 2021-08-31 09:17:09 -04:00
ofono ofono: fix config loading directory properly 2021-08-23 14:08:41 +02:00
oha oha: init at 0.4.6 2021-09-09 10:03:45 -04:00
olsrd pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
oneshot oneshot: 1.5.0 -> 1.5.1 2021-09-15 11:35:29 +02:00
ookla-speedtest ookla-speedtest: init at 1.0.0 (#130300) 2021-07-16 09:45:37 +02:00
openapi-generator-cli openapi-generator-cli: 5.2.0 -> 5.2.1 2021-08-22 09:16:48 +00:00
openconnect openconnect: adapt vpnc-script for use in nix 2021-06-02 18:41:33 -04:00
openfortivpn openfortivpn: 1.15.0 -> 1.16.0 2021-02-17 12:19:21 +00:00
openntpd treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
openresolv treewide: makeWrapper buildInputs to nativeBuildInputs 2021-02-19 20:09:16 +07:00
opensm opensm: 3.3.23 -> 3.3.24 2021-08-17 10:41:56 -07:00
opensnitch nixos/opensnitch: include systemd unit 2021-09-14 18:32:56 +02:00
openssh Merge master into staging-next 2021-09-23 00:01:50 +00:00
openvpn openvpn-auth-ldap: 2.0.3+deb6.1 -> 2.0.4 2021-05-29 14:00:57 -07:00
p2p azureus: drop 2021-08-02 13:28:38 +02:00
packetdrill pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
pacparser treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
par2cmdline treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
passh passh: init at 2020-03-18 2020-03-18 21:01:04 -07:00
pcapc treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
pcapfix tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
pdnsd tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
pdsh tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
persepolis treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
philter philter: expand platforms to all 2021-03-19 13:19:25 +07:00
phodav treewide: remove gnidorah 2021-04-30 01:48:19 +02:00
photon treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
pingtcp treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
pirate-get treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
pixiecore pixiecore: expand platforms to unix 2021-03-19 13:19:38 +07:00
pixiewps pixiewps: expand platforms to all 2021-03-19 13:19:48 +07:00
pmacct pkgs/tools: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
polygraph tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
polysh treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
ppp ppp: 2.4.8 -> 2.4.9 2021-07-21 15:20:44 +02:00
pptp iproute: deprecate alias 2021-04-04 01:43:46 +02:00
pptpd treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
prettyping treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
pritunl-ssh pritunl-ssh: init at 1.0.1674.4 2021-02-17 11:05:38 +05:30
privoxy nixos/tests/privoxy: add test 2021-03-09 11:03:00 +01:00
proxify proxify: 0.0.3 -> 0.0.4 2021-07-27 18:46:57 +02:00
proxychains proxychains: revert commit e6b5d5401e 2021-08-29 19:21:06 +08:00
proxychains-ng proxychains-ng: init at 4.15 2021-09-18 00:49:38 +08:00
pssh treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
pwnat pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
py-wmi-client
pykms pykms: 2019-06-11 -> 2021-01-25 2021-02-03 15:59:17 +08:00
qrcp qrcp: 0.8.1 -> 0.8.4 2021-05-10 18:57:50 +02:00
quickserve treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
quicktun treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
radsecproxy radsecproxy: 1.8.2 -> 1.9.0 2021-06-13 11:33:46 +02:00
radvd radvd: Add AR to makeFlags for cross-compiling 2021-03-12 22:05:16 +08:00
ratools treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
rcon rcon: 0.5 -> 0.6 2021-02-03 22:06:10 +00:00
rdrview rdrview: unstable-2020-12-22 -> unstable-2021-05-30 2021-08-20 16:10:30 +00:00
reaver-wps treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
reaver-wps-t6x treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
redfang redfang: init at 2.5 2021-06-10 15:04:42 +08:00
redir redir: expand platforms to all 2021-03-20 12:40:49 +07:00
redsocks pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
ripmime ripemime: fix darwin build 2021-03-09 09:16:10 +07:00
rp-pppoe treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
rshijack rshijack: 0.3.0 -> 0.4.0 2021-06-21 19:02:28 +02:00
rtptools rtptools: update homepage link to use HTTPS 2020-04-24 19:44:59 -07:00
s3cmd treewide: use pythonPackages.python-dateutil instead of pythonPackages.dateutil 2021-07-03 13:45:57 +02:00
s3gof3r treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
s3rs s3rs: init at 0.4.8 2021-05-30 10:42:20 +08:00
s4cmd treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
s5cmd s5cmd: 1.2.1 -> 1.3.0 2021-08-22 12:56:36 +00:00
s6-dns skawarePackages: Fall 2021 release 2021-09-27 14:28:43 +02:00
s6-networking skawarePackages: Fall 2021 release 2021-09-27 14:28:43 +02:00
saldl saldl: 40 -> 41 2021-04-06 16:26:59 +10:00
samplicator pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
shadowfox treewide: buildFlagsArray -> ldflags 2021-08-26 21:35:06 +10:00
shadowsocks-libev treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
shadowsocks-rust shadowsocks-rust: 1.10.5 -> 1.10.7 2021-04-17 04:20:00 +00:00
shadowsocks-v2ray-plugin shadowsocks-v2ray-plugin: init at 1.3.1 2020-08-23 09:20:56 +10:00
shncpd treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
shorewall iproute: deprecate alias 2021-04-04 01:43:46 +02:00
siege siege: 4.0.9 -> 4.1.1 2021-07-16 23:27:11 +02:00
simpleproxy treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
sipcalc treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
sipsak sipsakw: switch to fetchFromGitHub 2021-09-22 17:54:09 +02:00
sish sish: 1.1.6 -> 1.1.7 2021-09-15 22:35:05 +00:00
slack-cli slack-cli: Add missing dependencies 2020-06-29 13:54:35 +00:00
slirp4netns slirp4netns: 1.1.11 -> 1.1.12 2021-08-03 20:36:52 +10:00
smartdns smartdns: Fix systemd service 2021-09-18 12:51:19 +08:00
smokeping pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
snabb mysql: deprecate alias 2021-04-04 03:18:57 +02:00
sniffglue sniffglue: 0.13.0 -> 0.13.1 2021-09-14 23:32:37 +00:00
snmpcheck snmpcheck: init at 1.9 2021-08-01 09:46:29 +02:00
socat socat2pre: remove 2021-08-22 17:01:47 +02:00
sockperf sockperf: init at 3.7 2021-07-27 21:33:47 +10:00
spiped spipe: 1.5.0 -> 1.6.1 2021-05-08 22:22:52 +00:00
spoof-mac spoof-mac: init at unstable-2018-01-27 2021-09-08 00:51:17 -05:00
spoofer spoofer: 1.4.6 -> 1.4.7 2021-08-22 06:31:14 +00:00
srelay tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
ssh-agents treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
ssh-askpass-fullscreen treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
ssh-ident ssh-ident: change PATH 2021-01-18 18:33:48 +01:00
sshoogr treewide: editorconfig fixes 2021-01-20 09:11:11 +10:00
sshpass sshpass: 1.06 -> 1.09 2021-03-09 15:54:52 +00:00
sshping treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
ssldump ssldump: 1.1 -> 1.4 2021-08-28 12:12:04 +02:00
sslsplit treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
ssmtp ssmtp: cleanup, format 2021-08-02 13:15:47 +02:00
sstp sstp: rename phase 2021-09-05 11:22:45 +02:00
stevenblack-blocklist stevenblack-blocklist: 3.7.13 -> 3.8.2 2021-07-20 01:12:14 +08:00
strongswan strongswan: refactor to load from GitHub instead of archives 2021-07-26 19:59:18 +00:00
stubby pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
stun treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
stunnel stunnel: 5.59 -> 5.60 2021-08-21 00:28:00 +02:00
stuntman stuntman: init at 1.2.16 2021-09-12 08:22:04 -05:00
subfinder subfinder: 2.3.0 -> 2.4.8 2021-06-05 14:19:15 +02:00
surfraw tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
swagger-codegen swagger-codegen: do not override phases 2021-04-19 10:56:52 +02:00
swagger-codegen3 swagger-codegen3: init at 3.0.25 2021-04-19 10:56:52 +02:00
swaks treewide: makeWrapper buildInputs to nativeBuildInputs 2021-02-19 20:09:16 +07:00
swec tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
tayga treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
tcp-cutter tcp-cutter: rename from cutter 2021-03-30 12:20:43 +02:00
tcpdump tcpdump: 4.99.0 -> 4.99.1 2021-07-04 17:52:29 +02:00
tcpflow tcpflow: 1.5.2 -> 1.6.1 2021-02-24 18:45:20 +01:00
tcpreplay tcpreplay: 4.3.3 -> 4.3.4 2021-05-03 19:00:25 +02:00
tcptraceroute tcptraceroute: switch to fetchFromGitHub 2021-09-22 17:54:10 +02:00
tdns-cli treewide: fix cargoSha256/cargoHash 2021-05-08 00:36:37 -07:00
telepresence treewide: makeWrapper buildInputs to nativeBuildInputs 2021-02-19 20:09:16 +07:00
telepresence2 treewide: buildFlagsArray -> ldflags 2021-08-26 21:35:06 +10:00
tendermint tendermint: 0.34.12 -> 0.34.13 2021-09-14 00:56:41 +00:00
termshark termshark: 2.2.0 -> 2.3.0 2021-09-15 00:59:09 +00:00
tftp-hpa treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
tgt treewide: use perl.withPackages when possible 2021-03-31 21:35:37 +02:00
tinc tinc_pre: 1.1pre17 -> 1.1pre18 2021-06-28 21:40:55 +02:00
tinyfecvpn pkgs/tools: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
tinyproxy tinyproxy: 1.10.0 -> 1.11.0 (#122757) 2021-05-19 09:42:04 +02:00
tlspool pkgs/tools: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
tnat64 tnat64: init at 0.05 2021-05-11 16:16:13 +02:00
toss pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
tox-node treewide: fix cargoSha256/cargoHash 2021-05-08 00:36:37 -07:00
toxvpn toxvpn: format, cleanup 2021-08-02 13:14:13 +02:00
tracebox tracebox: switch to fetchFromGitHub 2021-09-22 17:54:44 +02:00
traceroute pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
trickle tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
tridactyl-native tridactyl-native: 1.20.3 -> 1.20.4 2021-01-23 10:36:17 +00:00
tunnelto tunnelto: 0.1.12 -> 0.1.18 2021-08-17 16:20:39 +00:00
twa pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
ua treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
ubridge treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
ucspi-tcp tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
udptunnel tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
uget pkgs/tools: pkgconfig -> pkg-config 2021-01-16 23:49:59 -08:00
uget-integrator uget-integrator: use spaces for indentation 2021-01-20 10:53:10 +10:00
unbound Merge branch 'master' into staging-next 2021-08-25 19:42:15 +02:00
updog updog: init at 1.4 2021-06-23 06:42:09 -04:00
uqmi uqmi: 2016-12-19 -> unstable-2019-06-27 2020-02-12 02:03:22 +01:00
urlwatch urlwatch: 2.21 -> 2.23 2021-05-25 13:59:31 -07:00
userhosts userhosts: init at 1.0.0 2021-07-16 09:44:58 +02:00
uwimap tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
v2ray v2ray: 4.41.1 -> 4.42.1 2021-09-12 21:55:03 +08:00
vde2 tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
vegeta vegeta: 12.7.0 -> 12.8.4 2020-10-21 13:05:34 -05:00
vlan tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
vpn-slice vpn-slice: init at 0.14 2020-08-24 10:10:02 +01:00
vpnc tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
vpnc-scripts vpnc-scripts: add missing dependency iproute2 2021-07-21 15:59:30 +02:00
vtun tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
waitron treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
wakelan tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
wakeonlan wakeonlan: init at 0.41 2021-02-13 04:21:22 +01:00
wavemon wavemon: 0.9.3 -> 0.9.4 2021-09-19 23:43:35 +02:00
wbox pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
webalizer tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
webwormhole webwormhole: init at git-2021-01-16 (#114269) 2021-02-26 20:24:44 -05:00
weighttp weighttp: add license 2021-02-04 13:12:27 +01:00
wget wget: 1.21.1 -> 1.21.2 2021-09-19 15:53:14 +00:00
wget2 lzma: deprecate alias 2021-04-04 19:49:52 +02:00
whois whois: 5.5.8 -> 5.5.10 2021-07-28 21:07:34 +02:00
wifish pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
wifite2 wifite2: add pixiewps dependency 2021-09-25 17:54:14 +07:00
wireguard-go wireguard-go: licence update 2021-08-16 16:40:31 +03:00
wireguard-tools wireguard-tools: 1.0.20210424 -> 1.0.20210914 2021-09-16 09:56:12 +02:00
wol treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
wolfebin treewide: editorconfig fixes 2021-01-20 09:11:11 +10:00
wormhole-william wormhole-william: 1.0.4 -> 1.0.5 2021-03-19 22:29:27 -04:00
wrk treewide: with stdenv.lib; in meta -> with lib; 2021-01-11 10:38:22 +01:00
wrk2 pkgs/tools: stdenv.lib -> lib 2021-01-15 17:12:36 +07:00
wuzz treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
x11-ssh-askpass tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
xh xh: 0.12.0 -> 0.13.0 2021-09-17 18:55:47 +00:00
xl2tpd xl2tpd: 1.3.15 -> 1.3.16 2021-02-09 19:14:21 +00:00
xnbd tools/networking: replace name with pname&version 2021-08-04 22:44:30 +02:00
yggdrasil treewide: buildFlagsArray -> ldflags 2021-08-26 21:35:06 +10:00
yrd treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
ytcc ytcc: 2.3.0 -> 2.4.1 2021-09-26 12:02:38 +00:00
zap zap: 2.7.0 -> 2.10.0 2021-02-17 18:57:28 +01:00
zerotierone zerotierone: 1.6.5 -> 1.6.6 2021-09-23 08:55:44 +02:00
zs-apc-spdu-ctl zs-apc-spdu-ctl: don't put runtime deps into buildInputs 2021-03-23 22:30:44 +01:00
zs-wait4host zs-wait4host: don't put runtime deps into buildInputs 2021-03-23 13:13:38 +01:00
zssh treewide: convert all links git.archlinux.org to github.com/archlinux/svntogit-* 2021-07-14 03:35:21 +02:00