William A. Kennington III
371de847ed
tinc_pre: 199573 -> d28f332
2015-01-02 10:43:55 -08:00
William A. Kennington III
feabfa0cc2
iperf: 3.0.9 -> 3.0.10
2015-01-02 10:43:55 -08:00
Peter Simons
37ae6de95d
s6: don't depend on GNU Make 4.0
...
The website gives no indication that version 4.x is required to build
this package, and even it if were, then there should be an override in
all-packages.nix instead of referring to the 'gnumake40' attribute
directly in this expression.
2015-01-01 20:36:58 +01:00
Michael Raskin
fdb785f4d1
Merge pull request #5453 from pmahoney/skarnet-2.0
...
Update skarnet.org software for 2.0 release.
2015-01-01 16:14:17 +03:00
Michael Raskin
b4ea438f3d
fdm: 1.7 -> 1.8
2014-12-31 21:20:39 +03:00
Domen Kožar
503071b77f
Merge pull request #5495 from mcox/unbound
...
nixpkgs: unbound 1.4.22 -> 1.5.1
2014-12-30 03:46:36 +01:00
Tobias Geerinckx-Rice
c64257b8e5
Fix user-facing typos (mainly in descriptions)
2014-12-30 03:31:03 +01:00
Matthew William Cox
676c462faa
nixpkgs: unbound 1.4.22 -> 1.5.1
2014-12-28 17:52:03 -05:00
Eelco Dolstra
782440310d
ntp: Don't depend on openssl, don't install docs
2014-12-28 19:38:45 +01:00
John Wiegley
28b6fb61e6
Change occurrences of gcc to the more general cc
...
This is done for the sake of Yosemite, which does not have gcc, and yet
this change is also compatible with Linux.
2014-12-26 11:06:21 -06:00
muflax
001f2110bd
par2cmdline: update to 0.6.11 and adopt it
...
[Bjørn: break overlong longDescription line]
2014-12-26 14:09:56 +01:00
Domen Kožar
4e87c458c4
Merge pull request #5470 from DamienCassou/mu-0.9.11
...
Update mu to 0.9.11
2014-12-25 17:50:47 +01:00
Damien Cassou
41cff1e9d0
Update mu to 0.9.11
2014-12-25 17:15:47 +01:00
Vladimír Čunát
0fbc5ddadb
ntp: security update, and use libcrypto
...
http://support.ntp.org/bin/view/Main/SecurityNotice#Recent_Vulnerabilities
The package would no longer build without libcrypto,
and it wouldn't find it without pkgconfig.
I checked that Debian and Arch do use openssl as a dependency,
so it's probably not so bad a thing to have.
CC maintainer @edolstra.
2014-12-25 12:30:53 +01:00
Patrick Mahoney
26e74d8a3e
Update skarnet.org software for 2.0 release.
...
New build system using configure script and GNU Make 4.0, and new
releases of the following using the new build system:
execline 2.0.0.0
s6 2.0.0.0
s6-dns 2.0.0.0
s6-linux-utils 2.0.0.0
s6-networking 2.0.0.0
s6-portable-utils 2.0.0.0
skalibs 2.0.0.0
2014-12-23 15:24:30 -06:00
Patrick Mahoney
a6f35b3e60
connect 1.104
...
Upstream moved to https://bitbucket.org/gotoh/connect
2014-12-23 09:07:39 -06:00
Igor Pashev
17d8029150
Strongswan: preserve PATH
2014-12-22 20:20:58 +00:00
Igor Pashev
9bbe674927
Strongswan: use full path to ipsec
...
This fixes issue:
... charon[6135]: 11[CHD] updown: /bin/sh: ipsec: command not found
2014-12-22 20:20:15 +00:00
Pascal Wittmann
f94580da69
Fix license attribute of many bsd-like licensed packages
2014-12-21 00:00:35 +01:00
Pascal Wittmann
f55545c0c9
fix maintainer information
...
s/maintainer/maintainers
2014-12-20 21:54:22 +01:00
Pascal Wittmann
197ea06a73
axel: add meta-information
2014-12-19 22:57:38 +01:00
Evgeny Egorochkin
4bf9039abf
privoxy: update from 3.0.21 to 3.0.22
2014-12-19 08:34:32 +02:00
Eelco Dolstra
011e581a4e
dhcpcd: Update to 6.6.6
2014-12-18 14:11:10 +01:00
William A. Kennington III
1368e94ae2
tinc: Update pre 1.1
2014-12-16 13:54:44 -08:00
Domen Kožar
de99c9c955
Merge branch 'staging'
2014-12-08 16:28:45 +01:00
Jaka Hudoklin
51fe9d17a8
Merge pull request #5261 from matejc/connman126
...
connman: update to 1.26
2014-12-08 13:01:12 +01:00
Matej Cotman
4b74502a35
cmst: update to 2014.12.05
2014-12-08 12:49:28 +01:00
Matej Cotman
94f8f28433
connman: update to 1.26
2014-12-08 12:47:00 +01:00
Domen Kožar
4aa3eec330
Merge branch 'master' into staging
...
Conflicts:
pkgs/development/libraries/fontconfig/default.nix
2014-12-07 14:02:48 +01:00
Rob Vermaas
6ae8983a5e
Update dd-agent to 4.4.0
2014-12-03 16:08:39 +01:00
Thomas Tuegel
02157ab123
libcurl: honor $SSL_CERT_FILE (fixed)
...
The previous attempt to patch libcurl used
getenv("CURL_CA_BUNDLE") || getenv("SSL_CERT_FILE")
to get the second environment variable if the first is unset.
Unfortunately, this broke libcurl because the (||) operator is C returns
only 0 or 1, so it is inappropriate for pointer comparisons! Now we use
getenv("CURL_CA_BUNDLE") ? getenv("CURL_CA_BUNDLE") : getenv("SSL_CERT_FILE")
instead. This has one downside: it always calls getenv twice! But,
that's a small price to pay for actually being correct.
2014-12-02 10:41:24 -06:00
Domen Kožar
f57d22fd05
openvpn: fix build
2014-12-02 15:30:25 +01:00
Domen Kožar
cc0d52846e
openvpn: 2.3.4 -> 2.3.6 (CVE-2014-8104)
2014-12-02 13:11:37 +01:00
AndersonTorres
3af34aa2b1
Megatools: update to 1.9.93
2014-11-30 12:07:44 -02:00
Jaka Hudoklin
88d4ae98ae
Merge pull request #5168 from pmahoney/skarnet-refactor
...
Skarnet refactor
2014-11-29 02:48:06 +01:00
Ricardo M. Correia
d4b4bae307
Update my maintainership
2014-11-29 02:15:39 +01:00
Patrick Mahoney
cf5f282940
Consolidate conf-compile steps for skarnet.org pkgs.
2014-11-28 13:10:37 -06:00
Vladimír Čunát
cbd2305d4d
Merge branch 'master' into staging
2014-11-28 18:59:07 +01:00
Pascal Wittmann
4261ab39a8
nzbget: update from 14.0 to 14.1
2014-11-28 11:08:12 +01:00
Wout Mertens
cacf3f6c1e
Merge branch 'curl-ssl-cert-file' of https://github.com/the-kenny/nixpkgs into staging
...
Standardize NixOS on using only SSL_CERT_FILE for the trusted SSL certificate store.
2014-11-27 13:29:50 +01:00
Domen Kožar
34ca304f58
network-manager: 0.9.8.8 -> 0.9.8.10
2014-11-27 12:10:20 +01:00
Domen Kožar
91bdca38a0
NetworkManager.service -> network-manager.service
2014-11-27 12:10:20 +01:00
Vladimír Čunát
abcb355453
restund, openssh_hpn: mark as broken
2014-11-27 01:19:24 +01:00
Vladimír Čunát
a68c1adc35
*: fix builds by disregarding warning from new glibc
...
Says: #warning "_BSD_SOURCE and _SVID_SOURCE are deprecated, use _DEFAULT_SOURCE"
CC: #4803 . There will likely appear more of these errors on Hydra in time.
2014-11-26 23:40:03 +01:00
Vladimír Čunát
b5ff06eda4
Merge branch 'master' into staging
2014-11-26 21:48:26 +01:00
Domen Kožar
f45b6fb078
fix tarball job
2014-11-26 21:04:59 +01:00
Edward Tjörnhammar
49e112c309
i2pd: 0.3.0 -> 0.4.0
2014-11-25 21:15:53 +01:00
Igor Pashev
4f9111e91f
strongSwan needs python for building ( Closes #4940 )
2014-11-25 15:29:05 +01:00
Shea Levy
140e1de0ec
strongswan: dont patchelf
...
fixes #5045 ('fixes')
2014-11-24 20:50:26 -05:00
Vladimír Čunát
a9bad25ffe
Merge branch 'master' into staging
2014-11-24 22:14:25 +01:00