summary refs log tree commit diff
path: root/pkgs/tools/networking/dnscrypt-proxy
Commit message (Collapse)AuthorAge
* treewide: get rid of platforms.allButJohn Ericson2018-03-14
| | | | | | | Negative reasoning like `allBut` is a bad idea with an open world of platforms. Concretely, if we add a new, quite different sort of platform, existing packages with `allBut` will claim they work on it even though they probably won't.
* dnscrypt-proxy: use mirror for source archivernhmjoj2018-01-09
|
* dnscrypt-proxy: enable parallel buildingJoachim Fasting2017-08-06
|
* dnscrypt-proxy: 1.9.4 -> 1.9.5Joachim Fasting2017-05-21
| | | | See https://github.com/jedisct1/dnscrypt-proxy/releases/tag/1.9.5
* dnscrypt-proxy: enable additional pluginsJoachim Fasting2017-03-16
| | | | | | | | | | | | | | | | | | | Adding ldns builds additional plugins for rewriting DNS queries, such as blocking and forwarding. For example, to use a custom domain blocklist, you can do ```nix let myBlockListFile = writeText "blocked-domains" '' *.example.com ''; in { services.dnscrypt-proxy.extraArgs = [ "-X libdcplugin_example_ldns_blocking.so,--domains=${myBlockListFile}" ]; } ```
* dnscrypt-proxy: 1.9.1 -> 1.9.4rnhmjoj2017-01-23
|
* dnscrypt-proxy: 1.9.0 -> 1.9.1Joachim Fasting2017-01-07
|
* dnscrypt-proxy: 1.7.0 -> 1.9.0Joachim Fasting2016-12-30
| | | | | | | | | Release notes at: https://github.com/jedisct1/dnscrypt-proxy/releases/tag/1.9.0 Packaging tweaks: - No longer split man page, kind of pointless ... - No longer install libtool files, they are now optional
* dnscrypt-proxy: 1.6.1 -> 1.7.0Joachim Fasting2016-08-02
| | | | | | No user-facing changes of particular note. Full changelog at https://github.com/jedisct1/dnscrypt-proxy/releases/tag/1.7.0
* dnscrypt-proxy: fix faulty use of platforms.allButJoachim Fasting2016-07-26
| | | | | | In 63b6498aa08fb72a756a242ec2c93c26e7cded99 I added a faulty use of `platforms.allBut` causing dnscrypt-proxy to continue being built (and failing) on OS X. D'oh!
* dnscrypt-proxy: minor refactorJoachim Fasting2016-05-06
|
* dnscrypt-proxy: split man outputJoachim Fasting2016-04-15
|
* dnscrypt-proxy: disable darwin buildJoachim Fasting2016-03-24
| | | | | | | | | | | | | | | | | | The darwin build has been broken for a long time and I'm unable to properly debug the issue. What appears to be happening is that the symbol `HAVE_SANDBOX_INIT` ends up being defined as 1 while `HAVE_SANDBOX_H` ends up being 0, resulting in undefined reference errors when `sandbox_init()` is called (because `<sandbox.h>` is not included first). This is a regression from dnscrypt-proxy 1.6.0 to 1.6.1. For context, sandbox.h is a deprecated OSX mechanism for sandboxing. The build failure is at https://hydra.nixos.org/build/32705849/nixlog/1/raw This patch closes NixOS/nixpkgs#14064
* dnscrypt-proxy: refactoringsJoachim Fasting2016-03-12
| | | | | - move build deps to nativeBuildInputs - use https urls
* dnscrypt-proxy: 1.6.0 -> 1.6.1Marius Bakke2016-03-02
|
* Merge pull request #8883 from joachifm/dnscrypt-proxy-1_6_0Arseniy Seroka2015-07-20
|\ | | | | dnscrypt-proxy: 1.5.0 -> 1.6.0
| * dnscrypt-proxy: 1.5.0 -> 1.6.0Joachim Fasting2015-07-18
| |
* | Merge pull request #6702 from joachifm/dnscrypt-proxyJames Cook2015-07-12
|\ \ | |/ |/| nixos: some improvements for dnscrypt-proxy
| * dnscrypt-proxy: enable systemd support on linuxJoachim Fasting2015-06-12
| | | | | | | | | | This permits using socket activation in the NixOS service module.
* | dnscrypt-proxy: Add myself as maintainerJascha Geerds2015-06-22
| |
* | dnscrypt-proxy: 1.4.3 -> 1.5.0Joachim Fasting2015-06-19
|/
* Don't use "with licenses;" for single licencesTobias Geerinckx-Rice2015-05-28
| | | | And don't use square brackets on such lines.
* Set some meta.platformsEelco Dolstra2015-03-20
| | | | Also fix meta.platform -> meta.platforms in a few places.
* dnscrypt-proxy: bump to version 1.4.3Joachim Fasting2015-02-06
|
* dnscrypt-proxy: minor superficial improvementsJoachim Fasting2014-11-22
| | | | | - Use upstream description and explicitly set platforms = all - Coding conventions fix
* dnscrypt-proxy: new expressionJoachim Fasting2014-11-11