aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2012-07-11 18:05:30 -0400
committerEelco Dolstra <eelco.dolstra@logicblox.com>2012-07-11 18:05:30 -0400
commitd287b62b6432ce3155e963c6471edf79ec70439a (patch)
treeaa27f5e62cb4efe56d1776b138a40cdb7fb46d55
parentb74d92755d1ca6a1538f292dcb5a906f66af7b51 (diff)
Set the User-Agent header to "Nix/<version>"
-rw-r--r--perl/lib/Nix/Config.pm.in2
-rw-r--r--scripts/download-from-binary-cache.pl.in1
2 files changed, 3 insertions, 0 deletions
diff --git a/perl/lib/Nix/Config.pm.in b/perl/lib/Nix/Config.pm.in
index 57751b6b4..ed197821e 100644
--- a/perl/lib/Nix/Config.pm.in
+++ b/perl/lib/Nix/Config.pm.in
@@ -1,5 +1,7 @@
package Nix::Config;
+$version = "@version@";
+
$binDir = $ENV{"NIX_BIN_DIR"} || "@bindir@";
$libexecDir = $ENV{"NIX_LIBEXEC_DIR"} || "@libexecdir@";
$stateDir = $ENV{"NIX_STATE_DIR"} || "@localstatedir@/nix";
diff --git a/scripts/download-from-binary-cache.pl.in b/scripts/download-from-binary-cache.pl.in
index 93155e0b5..ca3ff807b 100644
--- a/scripts/download-from-binary-cache.pl.in
+++ b/scripts/download-from-binary-cache.pl.in
@@ -41,6 +41,7 @@ sub addRequest {
$curl->setopt(CURLOPT_WRITEDATA, \$requests{$curlId}->{content});
$curl->setopt(CURLOPT_FOLLOWLOCATION, 1);
$curl->setopt(CURLOPT_CAINFO, $caBundle) if defined $caBundle;
+ $curl->setopt(CURLOPT_USERAGENT, "Nix/$Nix::Config::version");
$curl->setopt(CURLOPT_NOBODY, 1) if $head;
if ($activeRequests >= $maxParallelRequests) {