Will Dietz
b775493d23
obfs4: init at 0.0.10
2019-04-30 22:25:02 -05:00
Matthew Bauer
a3990c9f6d
Merge pull request #60447 from matthewbauer/macos-10-12-fixups
...
Fixup from macos-10-12 branch
2019-04-30 10:06:45 -04:00
Frederik Rietdijk
3462fe27d9
Merge staging-next into staging
2019-04-30 15:52:19 +02:00
Frederik Rietdijk
fd2bd6e433
Merge staging-next into master
2019-04-30 15:50:24 +02:00
Bas van Dijk
80df0495bb
strongswan: remove the now unnecessary dependency on libpcap
...
Since #51787 has been merged we can remove this ad-hoc fix.
2019-04-30 10:28:31 +02:00
Bas van Dijk
d771036ab2
strongswan: use placeholder instead of configureFlagsArray
2019-04-30 10:27:49 +02:00
Michael Raskin
5d09420337
Merge pull request #60459 from r-ryantm/auto-update/atftp
...
atftp: 0.7.1 -> 0.7.2
2019-04-30 07:56:28 +00:00
R. RyanTM
1e3e8b8ee0
atftp: 0.7.1 -> 0.7.2
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/atftp/versions
2019-04-29 22:26:41 -07:00
Matthew Bauer
74c784a79c
treewide: make -Wno-error flags clang-only
...
In 724e833ea2
, I was a little too aggressive in enabling these flags.
Many don’t work in gcc, and we should probably avoid settings them
widely. This makes those flags optional on isclang
2019-04-29 21:34:24 -04:00
Will Dietz
208fbe20ad
mosh: upstream patch to fix w/newer clang/libcxx (c++17)
...
Remove special-casing no longer needed.
2019-04-29 08:03:16 -05:00
Frederik Rietdijk
2f936f85d8
Merge master into staging-next
2019-04-29 13:46:20 +02:00
Peter Hoeg
8f81838ab5
Merge pull request #58800 from peterhoeg/f/openvpn
...
openvpn: support for updating systemd-resolved with DNS servers
2019-04-28 21:54:26 +08:00
Lassulus
75d150f9da
Merge pull request #59872 from Izorkin/datadog
...
Datadog: update packages
2019-04-27 19:27:32 +09:00
Jörg Thalheim
2a72ad4462
wol: fix manpage generation ( #60310 )
...
wol: fix manpage generation
2019-04-27 11:23:00 +01:00
Peter Hoeg
8086169413
wol: fix manpage generation
2019-04-27 17:22:13 +08:00
Bruno Bigras
4d8b9cbbdd
httplz: init at 1.5.0 ( #60304 )
2019-04-27 09:34:33 +02:00
Will Dietz
ee5f4636b0
dhcpcd: 7.2.0 -> 7.2.1
...
Includes security fixes!
https://roy.marples.name/blog/dhcpcd-7-2-1-released
2019-04-27 07:35:23 +02:00
Matthew Bauer
87944c3125
Merge pull request #56744 from matthewbauer/macos-10-12
...
Update macOS to 10.12
2019-04-26 22:20:03 -04:00
Matthew Bauer
724e833ea2
treewide: disable -Werror for llvm 7
...
Some of these have errors on newest llvm. It’s easiest to just add
-Wno-error in these cases.
2019-04-26 21:55:04 -04:00
Will Dietz
1cf626ce29
Merge pull request #60060 from dtzWill/update/networkmanager-1.18
...
networkmanager: 1.16.0 -> 1.18.0
2019-04-26 15:05:04 -05:00
Jan Tojnar
47bf62c0c9
networkmanager: no need for parallel building flag, drop
...
Per reviewer feedback, thanks!
Co-Authored-By: dtzWill <github@wdtz.org>
2019-04-26 14:56:27 -05:00
Andrew Childs
14e505c6fa
socat: fix darwin build
2019-04-26 23:56:33 +09:00
Matthew Bauer
84d00355e8
Merge remote-tracking branch 'NixOS/master' into staging
2019-04-23 22:00:42 -04:00
Franz Pletz
dc552fd2ff
Merge pull request #59807 from dtzWill/update/dhcpcd-7.2.0
...
dhcpcd: 7.1.1 -> 7.2.0
2019-04-23 23:18:44 +00:00
Will Dietz
b0537770d9
networkmanager: 1.16.0 -> 1.18.0
...
* build w/iwd support since it's free (no dep required!)
* move to iputils for minor utilities, instead of inetutils
* parallel building :)
https://gitlab.freedesktop.org/NetworkManager/NetworkManager/raw/1.18.0/NEWS
2019-04-22 22:12:53 -05:00
Jan Tojnar
60b382822f
networkmanager: port to Meson ( #59916 )
...
networkmanager: port to Meson
2019-04-23 02:41:26 +02:00
Jan Tojnar
a961a289a9
networkmanager: port to Meson
...
All hail Meson!
One serious issue is that building docs does not work.
We patch gobject-introspection to use absolute paths for shared libraries
in GIR files. Building the NetworkManager docs relies on the produced
introspection data but since the library is not yet installed
at the time the docs are generated, the build will fail.
It works in Autotools for some reason; they probably use
the pregenerated GIRs from the tarball.
Disabling the docs completely is not possible at the moment either,
since nmc [depends on them][1].
I have decided to fix this by pointing the installed location to the one
in the build directory using libredirect. Unfortunately, we cannot just set
the environment variables directly, since the build system runs
the documentation generator in a clean environment.
I have also added man, doc and devdoc outputs so the generated files have
somewhere to go.
Secondly, since Nix store is immutable, we also cannot use the package prefix
for configuration and mutable state data. At the same time, we cannot write
to the appropriate global directories during build. Autotools allowed to change
this in installFlags but Meson lacks similar mechanism so we need to patch
the build files.
Finally, I also removed the at_console patch since the permission has been
removed in 0.9.10.
[1]: https://bugzilla.gnome.org/show_bug.cgi?id=796755
2019-04-22 12:10:10 +02:00
Daniel Schaefer
bac4d95aa2
treewide: Change URLs to HTTPS
...
Lots of URLs were HTTP redirect to HTTPS. Changed those and checked them
if there's actual content. Inspired by
https://github.com/NixOS/nixpkgs/issues/60004
2019-04-22 10:19:54 +02:00
Will Dietz
54084dd821
shadowfox: 1.5.2 -> 1.7.20, move to buildGoModule ( #59972 )
2019-04-21 21:06:31 -07:00
Renaud
77916109ed
Merge pull request #59532 from r-ryantm/auto-update/haproxy
...
haproxy: 1.9.3 -> 1.9.6
2019-04-21 02:02:24 +02:00
Renaud
30aeb6c320
Merge pull request #59617 from r-ryantm/auto-update/openfortivpn
...
openfortivpn: 1.8.1 -> 1.9.0
2019-04-21 00:49:54 +02:00
Izorkin
eb299c0168
datadog-process-agent: 6.10.0 -> 6.11.0
2019-04-19 10:21:58 +03:00
Izorkin
f32ddcff25
datadog-agent: 6.10.1 -> 6.11.0
2019-04-19 10:09:54 +03:00
worldofpeace
cc97412a26
Merge pull request #59339 from worldofpeace/elementary-updates-etcs
...
pantheon updates, etc.
2019-04-18 12:01:18 -04:00
worldofpeace
cb3579d8c4
networkmanagerapplet: hardcode for eap gschema
...
This is needed for the networking plug in pantheon.switchboard
and the related indicator in pantheon.wingpanel
2019-04-18 11:28:18 -04:00
Frederik Rietdijk
256e34b89d
Merge staging-next into master ( #59733 )
2019-04-18 14:03:51 +02:00
Will Dietz
cd5343a7fc
xl2tpd: 1.3.13 -> 1.3.14
...
https://github.com/xelerance/xl2tpd/releases/tag/v1.3.14
2019-04-18 08:39:59 +02:00
Frederik Rietdijk
9d87ccabce
Merge master into staging-next
2019-04-18 08:25:25 +02:00
Will Dietz
a7ac961366
dhcpcd: 7.1.1 -> 7.2.0
...
https://roy.marples.name/blog/dhcpcd-7-2-0-released
2019-04-17 21:39:44 -05:00
Jan Tojnar
6ae33c9afe
Merge pull request #57736 from jtojnar/gupnp-1.2
...
gupnp: 1.0.3 → 1.2.0
2019-04-17 11:04:56 +02:00
Jörg Thalheim
045f98ea0c
Merge pull request #59728 from r-ryantm/auto-update/wireguard-tools
...
wireguard-tools: 0.0.20190227 -> 0.0.20190406
2019-04-17 08:27:39 +01:00
Michael Eden
19094e72bf
inetutils: cross compile
2019-04-16 19:04:40 +02:00
Frederik Rietdijk
2b52da5f99
Merge pull request #58222 from bobvanderlinden/var-run-pkgs
...
tree-wide: pkgs: /var/run -> /run
2019-04-16 19:02:56 +02:00
Michael Eden
d888baa517
dhcp: cross compile
2019-04-16 19:00:52 +02:00
R. RyanTM
2db96ffe49
unbound: 1.9.0 -> 1.9.1
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/unbound/versions
2019-04-16 18:56:09 +02:00
Frederik Rietdijk
bae32a9f5c
Merge staging-next into staging
2019-04-16 18:54:15 +02:00
R. RyanTM
08a62e0578
wireguard-tools: 0.0.20190227 -> 0.0.20190406
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/wireguard-tools/versions
2019-04-16 09:38:26 -07:00
R. RyanTM
6c3e0907a5
socat: 1.7.3.2 -> 1.7.3.3
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/socat/versions
2019-04-16 18:31:39 +02:00
R. RyanTM
f7997e326b
stunnel: 5.50 -> 5.53
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/stunnel/versions
2019-04-16 18:30:34 +02:00
R. RyanTM
617fda8d4d
stubby: 0.2.5 -> 0.2.6
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/stubby/versions
2019-04-16 18:30:00 +02:00
R. RyanTM
c5168ab16d
tgt: 1.0.75 -> 1.0.76
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/tgt/versions
2019-04-16 18:29:23 +02:00
R. RyanTM
8d24b1e237
urlwatch: 2.16 -> 2.17
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/urlwatch/versions
2019-04-16 18:28:37 +02:00
Jan Tojnar
c947e2dca4
gupnp-tools: 0.8.15 → 0.10.0
...
https://gitlab.gnome.org/GNOME/gupnp-tools/blob/gupnp-tools-0.10.0/NEWS
2019-04-16 15:15:41 +02:00
Matthew Bauer
f475aeaf29
Merge pull request #59535 from matthewbauer/homepage-fixes
...
treewide: update homepages to https where available
2019-04-15 20:47:30 -04:00
R. RyanTM
fe9189287d
openfortivpn: 1.8.1 -> 1.9.0
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/openfortivpn/versions
2019-04-15 10:21:43 -07:00
Matthew Bauer
290a5d916e
treewide: update homepages to https where available
...
Based on "problems" from repology:
https://repology.org/repository/nix_unstable/problems
Mostly simple changes to reflect redirects.
2019-04-15 10:10:05 -04:00
R. RyanTM
1ff140a862
haproxy: 1.9.3 -> 1.9.6
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/haproxy/versions
2019-04-14 16:00:50 -07:00
Joachim F
8ab8ef8972
Merge pull request #56418 from leenaars/unbound
...
Unbound: 1.8.3 -> 1.9.0
2019-04-14 21:38:28 +00:00
tobim
674d7f42c3
nfdump: 1.6.16 -> 1.6.17 ( #57306 )
...
* nfdump: 1.6.16 -> 1.6.17
Build system switched to autotools in the new version.
Also enabled the build of a few additional tools.
- Remove unneeded call to patchShebangs
- Add a comment explaining the darwin libtoolize workaround
2019-04-14 12:09:22 +02:00
LinArcX
c023dd9533
persepolis: init at 3.1.0 ( #58051 )
...
persepolis: init at 3.1.0
2019-04-13 13:22:12 +02:00
xrelkd
6ad4a95654
boringtun: init at 20190407
2019-04-13 10:38:04 +08:00
Jean-Paul Calderone
be8f891c5a
tahoe-lafs: clean up inputs ( #59231 )
...
Numpy has not been a dependency since 2012.
Apart from being unnecessary, numpy depends on openblas which fails to build on aarch64.
2019-04-11 22:22:59 +02:00
Bob van der Linden
b2f2707ca8
wicd: /var/run -> /run
2019-04-11 20:05:37 +02:00
Bob van der Linden
15d239fa2c
network-manager: /var/run -> /run
2019-04-11 20:05:34 +02:00
Frederik Rietdijk
292a3ad6a3
Merge staging-next into staging
2019-04-11 18:24:06 +02:00
Frederik Rietdijk
993e2b4ec2
Merge pull request #59098 from NixOS/staging-next
...
Staging next
2019-04-11 18:23:14 +02:00
Pascal Wittmann
aea1ebd186
Merge pull request #58705 from dtzWill/update/sstp-1.0.12
...
sstp: 1.0.11 -> 1.0.12
2019-04-11 14:38:24 +02:00
Frederik Rietdijk
c6341c279b
Merge staging-next into staging
2019-04-11 07:52:44 +02:00
Frederik Rietdijk
230c67f43b
Merge master into staging-next
2019-04-11 07:50:23 +02:00
Matthew Bauer
28d83343a3
Merge pull request #58625 from xzfc/aria2
...
aria2: Add sphinx build dependency to generate man pages
2019-04-11 01:03:43 -04:00
xrelkd
fc1603583b
brook: init at 20190401 ( #59201 )
2019-04-10 17:56:21 +02:00
Leroy Hopson
81b697db58
burpsuite: 1.7.23 -> 1.7.36
2019-04-10 09:48:42 +07:00
R. RyanTM
72a198fc60
ocserv: 0.12.2 -> 0.12.3 ( #58730 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/ocserv/versions
2019-04-09 22:45:23 +02:00
R. RyanTM
36bb2e3beb
i2pd: 2.23.0 -> 2.24.0 ( #58696 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/i2pd/versions
2019-04-09 21:17:43 +02:00
Frederik Rietdijk
ef0345a3fa
Merge staging-next into staging
2019-04-09 20:39:09 +02:00
Frederik Rietdijk
d108b49168
Merge master into staging-next
2019-04-09 16:38:35 +02:00
Maximilian Bosch
70689254bc
Merge pull request #59055 from suhr/tox-node
...
tox-node: init at 0.0.7
2019-04-09 11:48:29 +02:00
Alex Branham
67c5d04fee
mu: 1.0 -> 1.2 ( #59130 )
2019-04-08 21:13:10 +02:00
markuskowa
663030731e
Merge pull request #58656 from r-ryantm/auto-update/connman
...
connman: 1.36 -> 1.37
2019-04-08 16:03:38 +02:00
Samuel Dionne-Riel
40d59c6e8e
Merge pull request #58976 from gilligan/remove-nodejs6
...
Remove nodejs-6_x which is about to enter EOL
2019-04-07 19:49:24 -04:00
R. RyanTM
38ea62c7af
pcapfix: 1.1.3 -> 1.1.4 ( #58744 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/pcapfix/versions
2019-04-07 23:34:54 +02:00
R. RyanTM
9cb107d3db
curl: 7.64.0 -> 7.64.1 ( #58659 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/curl/versions
2019-04-07 20:13:39 +00:00
markuskowa
ad8e0454f1
Merge pull request #58668 from r-ryantm/auto-update/dropbear
...
dropbear: 2018.76 -> 2019.78
2019-04-07 21:25:20 +02:00
James Cook
d2326cc24a
Merge pull request #59064 from teto/ppp
...
ppp: add eap-tls patch
2019-04-07 15:50:33 +00:00
Timo Kaufmann
97cced90e6
gmrender-resurrect: mark as broken ( #59114 )
2019-04-07 14:45:24 +00:00
R. RyanTM
22ab852d8f
redir: 3.2 -> 3.3 ( #58868 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/redir/versions
2019-04-07 16:32:36 +02:00
R. RyanTM
50f763b21b
tcpreplay: 4.3.1 -> 4.3.2 ( #58898 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/tcpreplay/versions
2019-04-07 16:22:55 +02:00
Frederik Rietdijk
7f7da0a16f
Merge master into staging-next
2019-04-07 15:14:52 +02:00
Сухарик
e090a62b79
tox-node: init at 0.0.7
2019-04-07 15:29:30 +03:00
Vladimír Čunát
ca494bf6c3
Merge #59036 : wget: 1.20.1 -> 1.20.3 (SECURITY)
2019-04-07 09:56:53 +02:00
Frederik Rietdijk
4a125f6b20
Merge master into staging-next
2019-04-07 08:33:41 +02:00
Matthieu Coudron
d574780365
ppp: add eap-tls patch
...
else NetworkManager-l2tp fails with:
checking whether EAP-TLS patch has been applied to pppd... no
configure: error: EAP-TLS patch has not been applied to pppd
This check has been added in 56e82afe1f
,
i.e. l2tp version 1.7.0.
2019-04-06 22:18:21 +09:00
Vladimír Čunát
526c4292ae
Merge branch 'staging-next'
...
This iteration was long, about five weeks (2fcb11a2
), I think.
Darwin: it's missing a few thousand binaries and there's a make-netbsd
regression, but I suppose these aren't merge blockers.
2019-04-06 13:20:53 +02:00
Will Dietz
a88a701611
wget: 1.20.1 -> 1.20.3
...
http://lists.gnu.org/archive/html/info-gnu/2019-04/msg00001.html
http://lists.gnu.org/archive/html/info-gnu/2019-04/msg00000.html
2019-04-05 15:45:25 -05:00
worldofpeace
6ffd201adf
Update pkgs/tools/networking/dnscrypt-proxy/2.x/default.nix
...
Co-Authored-By: bbigras <bigras.bruno@gmail.com>
2019-04-05 15:28:16 +00:00
Bruno Bigras
9ec0a26027
dnscrypt-proxy2: 2.0.21 -> 2.0.22
2019-04-05 15:28:16 +00:00
Herwig Hochleitner
098fd3280e
i2p: 0.9.38 -> 0.9.39
2019-04-05 15:48:34 +02:00
Jan Tojnar
3486f5357e
networkmanager-fortisslvpn: 1.2.8 → 1.2.10
...
https://gitlab.gnome.org/GNOME/NetworkManager-fortisslvpn/blob/1.2.10/NEWS
2019-04-05 12:14:00 +02:00
Tor Hedin Brønner
99d4472db2
networkmanager: 1.14.4 -> 1.16.0
...
https://gitlab.freedesktop.org/NetworkManager/NetworkManager/blob/1.16.0/NEWS
2019-04-05 12:13:28 +02:00
Jan Tojnar
cb1a20499a
Merge branch 'master' into staging
2019-04-05 11:37:15 +02:00
tobias pflug
0e296d5fcd
Remove nodejs-6_x which is about to enter EOL
...
- Remove nodejs-6_x
- Set nodejs / nodejs-slim to nodejs-8_x / nodejs-slim-8_x
- Re-generate node2nix generated files using nodejs-8_x instead
2019-04-04 18:43:06 +01:00
Peter Hoeg
36c344ac00
openvpn: support for updating systemd-resolved with DNS servers
2019-04-03 09:35:27 +08:00
Mario Rodas
099af0ece3
shadowsocks-libev: 3.2.3 -> 3.2.5 ( #58650 )
2019-04-02 23:30:01 +02:00
Vladimír Čunát
2771375d6e
Merge branch 'master' into staging-next
...
Hydra nixpkgs: ?compare=1512490
2019-04-02 20:56:53 +02:00
Will Dietz
cdf96e8a08
networkmanager-l2tp: 1.2.10 -> 1.2.12
...
Same patchups but moved to new file.
2019-04-02 17:57:00 +01:00
Will Dietz
b850e9f64b
sstp: 1.0.11 -> 1.0.12
2019-04-01 14:50:53 -05:00
R. RyanTM
dc418e71c6
dropbear: 2018.76 -> 2019.78
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/dropbear/versions
2019-04-01 02:36:30 -07:00
R. RyanTM
f8388d04c9
connman: 1.36 -> 1.37
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/connman/versions
2019-04-01 00:05:16 -07:00
John Ericson
4ccb74011f
Merge commit '18aa59b0f26fc707e7313f8467e67159e61600c2' from master into staging
...
There was one conflict in the NixOS manual; I checked that it still
built after resolving it.
2019-04-01 00:40:03 -04:00
Albert Safin
c8dd7d49e7
aria2: Add sphinx build dependency to generate man pages
2019-03-31 15:56:31 +00:00
Will Dietz
9ad0e9ed55
whois: 5.4.1 -> 5.4.2
...
https://github.com/rfc1036/whois/blob/v5.4.2/debian/changelog
2019-03-29 11:41:57 -05:00
Silvan Mosberger
5e00a4bd5a
Merge pull request #57351 from r-ryantm/auto-update/openvpn
...
openvpn: 2.4.6 -> 2.4.7
2019-03-28 20:46:55 +01:00
Uli Baum
ea5f0983e7
tahoe-lafs: fix build
2019-03-27 21:13:14 +01:00
Silvan Mosberger
df8281e3a6
Merge pull request #58395 from r-ryantm/auto-update/ndisc6
...
ndisc6: 1.0.3 -> 1.0.4
2019-03-27 03:32:32 +01:00
Peter Simons
ffc14a60b5
Merge pull request #58391 from r-ryantm/auto-update/nbd
...
nbd: 3.18 -> 3.19
2019-03-26 21:17:41 +01:00
R. RyanTM
c332fd0883
ndisc6: 1.0.3 -> 1.0.4
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/ndisc6/versions
2019-03-26 11:57:10 -07:00
R. RyanTM
ad70015295
nbd: 3.18 -> 3.19
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/nbd/versions
2019-03-26 11:43:48 -07:00
Dylan Simon
1c3a4ef287
fetchurl: use fetchurlBoot for zlib deps
2019-03-25 15:04:55 -04:00
volth
2be90ccb4f
gnome3.gtk -> gtk3
...
fix evaluation when config.allowAliases == false
(regression after #55735 )
2019-03-24 14:34:39 -04:00
Jörg Thalheim
6158b9ef7c
Merge pull request #57825 from illegalprime/fix/autossh-cross
...
autossh: fix for cross compilation
2019-03-24 06:35:48 +00:00
Frederik Rietdijk
23e431387b
Merge staging-next into staging
2019-03-23 09:20:09 +01:00
Frederik Rietdijk
b40d752872
Merge master into staging-next
2019-03-23 09:18:41 +01:00
Will Dietz
84b7bf85f4
Merge pull request #58085 from r-ryantm/auto-update/fping
...
fping: 4.1 -> 4.2
2019-03-22 13:01:59 -05:00
Joachim F
aded9eae35
Merge pull request #57949 from carlosdagos/dnscrypt-2.0.21
...
dnscrypt-proxy2: 2.0.15 -> 2.0.21
2019-03-22 07:34:16 +00:00
Wael M. Nasreddine
5af0780492
Merge remote-tracking branch 'origin/master' into staging
...
* origin/master: (693 commits)
buildGoModule: use go_1_12 instead of go_1_11 (#58103 )
gitAndTools.lab: 0.15.2 -> 0.15.3 (#58091 )
signal-desktop: 1.22.0 -> 1.23.0
added missing semicolon to documentation
terminus_font_ttf: 4.46.0 -> 4.47.0
buildGoModule: remove SSL env vars in favor of cacert in buildInputs (#58071 )
dav1d: init at 0.2.1
dropbox-cli: 2018.11.28 -> 2019.02.14
atlassian-confluence: 6.14.1 -> 6.14.2
maintainers: update email for dywedir
python.pkgs.hglib: use patch to specify hg path (#57926 )
chkrootkit: 0.52 -> 0.53
radare2-cutter: 1.7.2 -> 1.8.0
autorandr: 1.7 -> 1.8
pythonPackages.pyhepmc: fix build
llvm-polly/clang-polly: use latest llvm
apulse: 0.1.11.1 -> 0.1.12, cleanup
factorio: experimental 0.17.14 → 0.17.16 (#58000 )
sequeler: 0.6.7 -> 0.6.8
nasc: 0.5.1 -> 0.5.2
...
2019-03-21 21:01:25 -07:00
R. RyanTM
6347dee4b9
fping: 4.1 -> 4.2
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/fping/versions
2019-03-21 15:16:16 -07:00
Carlos D'Agostino
0fd37a2da1
dnscrypt-proxy2: 2.0.15 -> 2.0.21
2019-03-20 21:13:59 +11:00
Florian Klink
69cd72b3e1
network-manager: add legacy service name as fallback
...
This prevents NetworkManager from not starting back up while switching
configurations.
This can be removed once 19.10 is released.
2019-03-20 00:36:33 +01:00
Jörg Thalheim
b488c60cdb
network-manager: rename systemd service back to match upstream
...
Compatibility with other distributions/software and expectation
of users coming from other systems should have higher priority over consistency.
In particular this fixes #51375 , where the NetworkManager-wait-online.service
broke as a result of this.
2019-03-19 23:48:08 +01:00
Jörg Thalheim
3f9ac24d53
Revert "modemmanager: rename ModemManager.service to modem-manager.service"
...
This reverts commit c6882b2cf9
.
2019-03-19 23:48:08 +01:00
Bob van der Linden
d394fa0d96
ngrok2: cleanup update.sh
2019-03-19 20:28:30 +01:00
Bob van der Linden
b1bfe7b478
ngrok-2: set updateScript
2019-03-19 20:03:41 +01:00
Bob van der Linden
acedabeff7
ngrok-2: rename update to update.sh
2019-03-19 20:03:27 +01:00
Robert Hensing
2f410841b8
Merge pull request #57536 from roberth/ngrok-update
...
Ngrok update + update script
2019-03-19 11:07:33 +01:00
Dmitry Kalinkin
631ec69639
Merge pull request #57048 from 0x4A6F/master-tayga
...
tayga: init at 0.9.2
2019-03-18 21:28:43 -04:00
Andreas Rammhold
f5c63cbb54
Merge pull request #57018 from andir/davix
...
davix: 0.6.4 -> 0.7.2
2019-03-18 18:54:03 +01:00
0x4A6F
2c330e1382
tayga: init at 0.9.2
2019-03-18 17:42:41 +00:00
Robert Hensing
a45031aa73
ngrok-2: 2.2.8 -> 2.3.18
2019-03-17 23:57:44 +01:00
xeji
88ffb73636
Merge pull request #57411 from srhb/mitmproxy-wsproto-update
...
mitmproxy: wsproto and pytest fixes
2019-03-17 00:12:38 +01:00
Michael Eden
f17231ba57
autossh: fix for cross compilation
2019-03-16 16:34:06 -04:00
Mario Rodas
3039cfcfde
shadowsocks-rust: init at 1.7.0
2019-03-16 07:35:08 -05:00
Cedric Cellier
e1fb3b5d3e
junkie: fix src sha256
...
No idea how ever built. TIL about nix-prefetch-url.
2019-03-16 03:48:02 +01:00
Franz Pletz
eec84d5e84
Merge pull request #57534 from elseym/wireguard-tools
...
wireguard-tools: 0.0.20190123 -> 0.0.20190227
2019-03-15 22:01:37 +00:00
worldofpeace
cb962e829c
modemmanager: 1.7.990 -> 1.10.0
...
* Add flags for systemd [0]
* Enable tests
Though I actually didn't look to see how they're
performed, only effort done was to get a success-
ful build.
* Enable vala bindings
[0]: https://gitlab.freedesktop.org/mobile-broadband/ModemManager/blob/1.8.0/NEWS#L21
2019-03-15 13:37:31 -04:00
Cedric Cellier
1881bd83cc
junkie: init at 2.8.0
2019-03-15 08:21:09 +01:00
Maximilian Bosch
bc34c15a56
Merge pull request #57345 from r-ryantm/auto-update/offlineimap
...
offlineimap: 7.2.2 -> 7.2.3
2019-03-15 02:50:53 +01:00
Vladimír Čunát
04066403ae
Merge branch 'master' into staging-next
...
Lots of rebuilds from master, apparently.
Hydra nixpkgs: ?compare=1509577
2019-03-14 19:54:49 +01:00
Vincent Demeester
f73f0e5e2e
kail: 0.7.0 -> 0.8.0
...
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
2019-03-14 17:24:26 +01:00
Michiel Leenaars
43bf31eb99
pythonPackages.pyunbound: 1.7.3 -> 1.9.0
2019-03-14 00:50:56 +01:00
R. RyanTM
39789683d0
tgt: 1.0.74 -> 1.0.75 ( #57489 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/tgt/versions
2019-03-14 00:09:50 +01:00
elseym
f96f14f69e
wireguard-tools: 0.0.20190123 -> 0.0.20190227
2019-03-13 06:56:37 +01:00
Jascha Geerds
ffedc3e4a9
misc: Remove myself from list of maintainers
...
Unfortunately I don't have the time anymore to maintain those
packages.
2019-03-12 23:50:52 +01:00
R. RyanTM
6195532a0b
openfortivpn: 1.8.0 -> 1.8.1 ( #57348 )
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/openfortivpn/versions
2019-03-12 22:54:31 +01:00
Robert Hensing
859c28dae1
ngrok-2: Use stable channel
2019-03-12 20:35:53 +01:00
Robert Hensing
794750fce2
ngrok-2: Fix URLs and automate
2019-03-12 20:35:50 +01:00
Sarah Brofeldt
e1e5df688a
mitmproxy: Fix tests with pytest >= 4.x
2019-03-11 17:08:24 +01:00
Sarah Brofeldt
3df55b80bb
mitmproxy: Fix build with wsproto >= 0.13
2019-03-11 17:08:02 +01:00
R. RyanTM
ddc5666b28
openvpn: 2.4.6 -> 2.4.7
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/openvpn/versions
2019-03-11 01:00:15 -07:00
R. RyanTM
1b61380bf3
offlineimap: 7.2.2 -> 7.2.3
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/offlineimap/versions
2019-03-11 00:23:26 -07:00
Vladimír Čunát
bf47162c26
Merge branch 'master' into staging-next
...
Hydra nixpkgs: ?compare=1508887
2019-03-10 08:04:21 +01:00
Will Dietz
d7c23cc65f
ntp: 4.2.8p12 -> 4.2.8p13 ( #57059 )
...
From http://www.ntp.org/index.html :
> ntp-4.2.8p13 was released on 07 March 2019.
> It addresses 1 medium-severity security issue in ntpd, and provides 17
> other non-security fixes and 1 improvements over 4.2.8p12.
2019-03-08 23:06:29 +01:00
Yurii Izorkin
59ccd3a70f
datadog-agent: 6.10.0 -> 6.10.1 ( #57065 )
2019-03-08 13:15:43 -08:00
Nikola Knezevic
81042e810f
strongswan: 5.7.1 -> 5.7.2
2019-03-08 16:11:38 +01:00
Jörg Thalheim
87f8d1de64
Merge pull request #56969 from knl/build-strongswan-on-macos
...
strongswan: Make it build on macOS
2019-03-08 11:14:18 +00:00
Andreas Rammhold
9db4b80f19
davix: 0.6.4 -> 0.7.2
...
Bump version to be compatible with OpenSSL 1.1.
cc #22357
2019-03-07 12:47:31 +01:00
Jörg Thalheim
3befd1314c
Merge pull request #56232 from elseym/wireguard-go
...
wireguard-go: 0.0.20181001 -> 0.0.20181222
2019-03-07 10:43:18 +00:00
Nikola Knezevic
1609f860f5
strongswan: Make it build on macOS
...
Original expression could not be built on macOS due to using dependencies to
Linux only packages. This change fixes that by grouping the dependencies based
on the suitable system. In addition, it uses `configure` flags recommended by
the project for building on macOS, as well the ones used by Homebrew.
2019-03-07 10:05:17 +01:00
Wael Nasreddine
51fdca9cad
Merge pull request #56567 from Izorkin/datadog-agent
...
datadog-agent: update go packages and sub-packages
2019-03-05 16:59:21 -08:00
lewo
273b83ec23
Merge pull request #56667 from r-ryantm/auto-update/gandi-cli
...
gandi-cli: 1.3 -> 1.4
2019-03-05 21:15:37 +01:00
Frederik Rietdijk
5d7ab31949
Merge master into staging-next
2019-03-05 08:32:52 +01:00
Will Dietz
9deced9c63
s6-networking: 2.3.0.3 -> 2.3.0.4
...
https://skarnet.org/software/s6-networking/upgrade.html
2019-03-04 23:23:55 +01:00
Will Dietz
3fe8eeabd5
s6-dns: 2.3.0.1 -> 2.3.0.2
...
https://skarnet.org/software/s6-dns/upgrade.html
2019-03-04 23:23:55 +01:00
R. RyanTM
f53ceb228a
haproxy: 1.9.1 -> 1.9.3
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/haproxy/versions
2019-03-03 20:50:32 +01:00
Frederik Rietdijk
35e73c9dd5
Merge staging into staging-next
2019-03-03 09:35:42 +01:00
Elis Hirwing
bcdab23bdd
Merge pull request #56766 from r-ryantm/auto-update/twa
...
twa: 1.7.1 -> 1.8.0
2019-03-03 09:02:53 +01:00
R. RyanTM
f4e5db3349
twa: 1.7.1 -> 1.8.0
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/twa/versions
2019-03-02 21:47:07 -08:00
Izorkin
a8c2705b0d
datadog-agent: add old version pg8000
2019-03-02 12:57:22 +03:00
R. RyanTM
de2a34f934
gandi-cli: 1.3 -> 1.4
...
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/gandi-cli/versions
2019-03-01 23:46:34 -08:00
Andreas Rammhold
447c21089b
tinc_pre: fix error after openssl upgrade
...
With the openssl upgrade to 1.0.2r / 1.1.1b the tinc pre-release version
stopped working due to a bug in tinc where an encryption function was
used during decryption. I submitted a patch upstream [1] but that wasn't
released yet.
[1] http://git.tinc-vpn.org/git/browse?p=tinc;a=commit;h=2b0aeec02d64bb4724da9ff1dbc19b7d35d7c904
2019-03-01 22:33:46 +01:00
Frederik Rietdijk
205e0fc5bd
Merge staging-next into staging
2019-03-01 09:22:21 +01:00
Frederik Rietdijk
2fcb11a244
Merge staging-next into master
2019-03-01 09:06:20 +01:00
Izorkin
ce2ef06c35
datadog-process-agent: 6.5.0 -> 6.10.0
2019-03-01 10:55:07 +03:00
Izorkin
35b6943507
datadog-trace-agent: trace-agent moved to datadog-agent
2019-03-01 10:47:02 +03:00
Izorkin
19b61b98d6
datadog-agent: update sub-packages
2019-03-01 10:21:10 +03:00
Izorkin
c915e479b9
datadog-agent: update go packages
2019-03-01 10:06:19 +03:00
Yurii Izorkin
fa20f98571
datadog-agent: 6.9.0 -> 6.10.0 ( #56523 )
2019-02-28 11:48:49 -08:00
John Ericson
8293ab8461
Merge pull request #56408 from Mic92/runtime-shell
...
treewide: use runtimeShell instead of stdenv.shell whenever possible
2019-02-26 18:04:27 -05:00
Will Dietz
e8f4e5af8d
radvd: 2.17 -> 2.18
...
First release in over a year, not sure of changelog.
Release announcement:
http://lists.litech.org/pipermail/radvd-announce-l/2019-February/000045.html
2019-02-26 11:30:03 -06:00
Jörg Thalheim
dadc7eb329
treewide: use runtimeShell instead of stdenv.shell whenever possible
...
Whenever we create scripts that are installed to $out, we must use runtimeShell
in order to get the shell that can be executed on the machine we create the
package for. This is relevant for cross-compiling. The only use case for
stdenv.shell are scripts that are executed as part of the build system.
Usages in checkPhase are borderline however to decrease the likelyhood
of people copying the wrong examples, I decided to use runtimeShell as well.
2019-02-26 14:10:49 +00:00
aszlig
6dc9f79c0f
ip2unix: 2.0.0 -> 2.0.1
...
Upstream fixes:
- Unregister socket as soon as we know that no rule matches.
I also removed the encode_rules() function which was an artifact left in
version 2.0.0.
Built and tested on i686-linux and x86_64-linux.
Signed-off-by: aszlig <aszlig@nix.build>
2019-02-26 11:30:07 +01:00
Profpatsch
a36d2eac2e
nettee: init at 0.3.4
2019-02-25 10:34:16 +01:00
Matthew Bauer
73061742af
Merge remote-tracking branch 'NixOS/master' into staging
2019-02-24 18:54:32 -05:00
Frederik Rietdijk
c2eac6741b
Merge master into staging-next
2019-02-24 09:19:12 +01:00
Will Dietz
c39fb495dd
networkmanager: 1.14.4 -> 1.14.6 ( #56253 )
...
https://gitlab.freedesktop.org/NetworkManager/NetworkManager/blob/1.14.6/NEWS
2019-02-23 23:21:36 -06:00
Robert Schütz
3e14d7193e
getmail: 5.10 -> 5.13
2019-02-23 08:05:11 +01:00
Vladimír Čunát
71f4ba29a3
Merge branch 'master' into staging-next
...
Hydra nixpkgs: ?compare=1506218
2019-02-22 17:51:01 +01:00
Florian Friesdorf
fbef5ab82f
Remove myself as maintainer from packages
...
I'm currently not maintaining any packages.
2019-02-22 16:14:13 +01:00
elseym
2380290ad8
wireguard-go: 0.0.20181001 -> 0.0.20181222
2019-02-22 16:02:51 +01:00
Vladimír Čunát
4ba49d3d6c
Merge #55988 : treewide meta.platforms: linux -> unix
2019-02-22 07:59:34 +01:00
Vladimír Čunát
52a2414aae
Merge #55819 : unbound: 1.8.3 -> 1.9.0 (into staging)
...
It would be quite a shame if 19.03 missed dnsflagday.net changes
and some other features/fixes from 1.9.0.
2019-02-22 07:38:38 +01:00