Edward Tjörnhammar
3a6c354094
i2pd: 2.2.0 -> 2.3.0
2016-01-12 22:09:31 +01:00
Nikolay Amiantov
4a9ad20a95
Revert "vde2: support static build"
...
This reverts commit fda6c0d3c7
.
See ee6ca494d2
for related discussion.
2016-01-12 17:15:14 +03:00
Nikolay Amiantov
fda6c0d3c7
vde2: support static build
2016-01-12 15:06:23 +03:00
Nikolay Amiantov
c2b70e6147
easyrsa: 2.2.0 -> 3.0.0
2016-01-10 07:28:55 +03:00
Arseniy Seroka
6cd71e5c91
Merge pull request #12268 from sigma/version/stunnel
...
stunnel: 5.26 -> 5.29
2016-01-09 23:52:19 +03:00
Allan Espinosa
d0e1ee6e55
axel: mark as buildable on darwin
2016-01-09 12:37:16 -06:00
Yann Hodique
a4c3b433ee
stunnel: 5.26 -> 5.29
2016-01-09 09:02:54 -08:00
Matthew O'Gorman
e11004cdf3
zap: init at 2.4.3
2016-01-08 23:46:45 -05:00
Robin Gloster
af50b03f50
fuppes: remove obsolete broken package and service
2016-01-07 06:39:05 +00:00
Benjamin Staffin
67f4c2a779
openssh: Add gssapi patch used by other major distros
...
This patch is borrowed verbatim from Debian, where it is actively
maintained for each openssh update. It's also included in Fedora's
openssh package, in Arch linux as openssh-gssapi in the AUR, in MacOS
X, and presumably various other platforms and linux distros.
The main relevant parts of this patch:
- Adds several ssh_config options:
GSSAPIKeyExchange, GSSAPITrustDNS,
GSSAPIClientIdentity, GSSAPIServerIdentity
GSSAPIRenewalForcesRekey
- Optionally use an in-memory credentials cache api for security
My primary motivation for wanting the patch is the GSSAPIKeyExchange
and GSSAPITrustDNS features. My user ssh_config is shared across
several OSes, and it's a lot easier to manage if they all support the
same options.
2016-01-05 14:50:05 -08:00
Moritz Ulrich
24e0868763
isync: Add unstable variant.
2016-01-05 12:21:10 +01:00
Tobias Geerinckx-Rice
bb288f43af
pingtcp: install README.md
2016-01-04 21:13:46 +01:00
Tobias Geerinckx-Rice
3a9c863150
pcapc: init at 2015-03-06
2016-01-04 21:13:05 +01:00
Pascal Wittmann
192fda79e0
Merge pull request #11832 from ktosiek/gupnp-tools-fixes
...
gupnp-tools: add required icons, rename from gupnptools
2016-01-04 17:16:41 +01:00
Tobias Geerinckx-Rice
517d8c8846
pingtcp: init at 0.0.3
2016-01-04 16:09:46 +01:00
Tomasz Kontusz
62d2a91b2b
gupnp-tools: add required icons, rename from gupnptools
2016-01-04 09:34:51 +01:00
Mateusz Kowalczyk
8a5421da50
babeld: update from 1.5.1 to 1.6.1
2016-01-03 20:51:14 +00:00
Tobias Geerinckx-Rice
6862e5c636
dhcping: init at 1.2
2016-01-03 20:38:52 +01:00
Tobias Geerinckx-Rice
4943e41347
wget: make libpsl attribute properly optional
2016-01-03 00:24:28 +01:00
Robert Helgesson
a596f7dcb9
netcat: add meta data
2016-01-02 22:49:57 +01:00
Fabian Schmitthenner
28b3ecac07
networkmanager: fix path /sbin/modprobe
2016-01-02 18:23:59 +01:00
Bjørn Forsman
b1570d4f57
offlineimap: don't depend on 'pkgs' attrset
...
It's considered bad style to depend on "everything". In this case, all
that was needed from 'pkgs' was 'stdenv'.
2016-01-02 18:17:22 +01:00
Damien Cassou
fc83959704
offlineimap: 6.6.0 → 6.6.1
2016-01-02 18:07:14 +01:00
Vladimír Čunát
b7658f3f8b
connman: drop policykit dependency, refactor meta
...
PolicyKit is long obsoleted by PolKit and it didn't seem used here.
/cc maintainer @matejc.
2016-01-02 09:02:05 +01:00
Michael Raskin
8431b84d9a
tcpflow: 1.4.4 -> 1.4.5
2016-01-01 12:30:17 +03:00
Vladimír Čunát
08dd527cc7
Merge branch 'staging'
...
http://hydra.nixos.org/eval/1234895
The mass errors on Hydra seem transient; I verified ghc on i686-linux.
Only darwin jobs are queued ATM. There's a libpng security update
included in this merge, so I don't want to wait too long.
2015-12-29 17:14:35 +01:00
Arseniy Seroka
efce163164
Merge pull request #11988 from mayflower/update-dhcpcd
...
dhcpcd: 6.9.3 -> 6.9.4
2015-12-29 15:00:40 +03:00
Edward Tjörnhammar
2c9369dc43
i2pd: 2.1.0 -> 2.2.0
2015-12-29 09:17:35 +01:00
Peter Simons
f3aa927b70
Merge pull request #11991 from dezgeg/pr-openssh-purity
...
openssh: Compile with '--with-pid-dir' to improve build purity
2015-12-28 21:49:36 +01:00
Tuomas Tynkkynen
919d44d29f
openssh: Compile with '--with-pid-dir' to improve build purity
...
The configure script tries to probe whether /var/run exists when
determining the location for the pid file, which is not very nice when
doing chroot builds. Just set it explicitly to avoid the problem.
For reference, the culprit in configure.ac:
````
piddir=/var/run
if test ! -d $piddir ; then
piddir=`eval echo ${sysconfdir}`
case $piddir in
NONE/*) piddir=`echo $piddir | sed "s~NONE~$ac_default_prefix~"` ;;
esac
fi
AC_ARG_WITH([pid-dir],
[ --with-pid-dir=PATH Specify location of ssh.pid file],
...
````
Also, use the `install-nokeys` target in installPhase so we avoid
installing useless host keys into $out/etc/ssh and improve built purity
as well.
2015-12-28 18:40:21 +02:00
Robin Gloster
a219778acc
dhcpcd: 6.9.3 -> 6.9.4
2015-12-27 21:40:09 +00:00
Benjamin Staffin
bb3a2aa8eb
autossh: build on darwin too
...
Tested it out just now - seems like it works fine.
2015-12-26 13:46:34 -08:00
Dan Peebles
50a00101c1
dnsmasq: get it working on darwin again
2015-12-24 23:27:31 -05:00
Nathan Zadoks
0fda4ff715
tahoelafs: mock is required at runtime for some reason
2015-12-24 11:08:16 +01:00
Robin Gloster
8613060425
socat: add patch to fix build with libressl
...
This fixes the build for libressl >= 2.3 as some legacy openssl code has
been removed.
2015-12-23 22:08:33 +00:00
Thomas Tuegel
17e17ea649
cmst: Qt 5 infrastructure update
2015-12-20 07:56:51 -06:00
Nikolay Amiantov
13548530a6
networkmanager: fix udev rules file, fixes #11744
2015-12-16 22:55:03 +01:00
Yann Hodique
9a40af11c3
corkscrew: fix darwin build
...
corkscrew ships outdated versions of config.{sub,guess}. Point to
automake version instead.
2015-12-13 14:31:00 -08:00
Tobias Geerinckx-Rice
492541c378
miniupnpd 1.9.20150721 -> 1.9.20151212
...
Changes: https://github.com/miniupnp/miniupnp/blob/master/miniupnpd/Changelog.txt
2015-12-12 17:02:08 +01:00
Lancelot SIX
069b1891d3
pkgs.wget: 1.17 -> 1.17.1
...
1.17.1 is a bugfix release. See
https://lists.gnu.org/archive/html/info-gnu/2015-12/msg00007.html for
announcement.
2015-12-12 12:41:46 +01:00
Pascal Wittmann
d0fbac6358
nzbget: 16.3 -> 16.4
2015-12-12 12:05:19 +01:00
goibhniu
5a4be85b3a
Merge pull request #11579 from mayflower/pkg/redir
...
redir: init at 2.2.1
2015-12-12 12:04:02 +01:00
Robin Gloster
171d622fcd
redir: init at 2.2.1
2015-12-10 16:09:32 +00:00
Domen Kožar
05c12a337d
snabbswitch: add missing diffutils dependency
2015-12-10 15:38:06 +01:00
Domen Kožar
c879a6eed5
snabbswitch: add missing dependencies
2015-12-10 12:47:32 +01:00
Pascal Wittmann
83c22f9c8f
Merge pull request #11547 from sigma/corkscrew
...
add corkscrew networking tool
2015-12-08 17:47:46 +01:00
Yann Hodique
e0fe879562
corkscrew: init at 2.0
2015-12-08 07:28:56 -08:00
Domen Kožar
27bea9a3aa
Merge pull request #11536 from bendlas/update-i2p
...
i2p: 0.9.22 -> 0.9.23
2015-12-08 10:34:11 +01:00
Pascal Wittmann
b843e7c50a
libtorrent: fix evaluation
2015-12-07 22:39:39 +01:00
Peter Simons
a0cdd48171
rtorrent: fix meta.homepage attribute
2015-12-07 22:30:55 +01:00