summary refs log tree commit diff
path: root/pkgs/tools/networking/dnsmasq
diff options
context:
space:
mode:
authorFrerich Raabe <raabe@froglogic.com>2014-08-07 21:00:19 +0200
committerFrerich Raabe <raabe@froglogic.com>2014-08-07 21:40:45 +0200
commit965237a6eef394d6acf3b0e31f35b27e65ab0b95 (patch)
treef3c42cf58865dc1937c3f8a375786c6fa3c44e82 /pkgs/tools/networking/dnsmasq
parentdee49fa1b221973693a760d987e103f9d944312d (diff)
downloadnixpkgs-965237a6eef394d6acf3b0e31f35b27e65ab0b95.tar
nixpkgs-965237a6eef394d6acf3b0e31f35b27e65ab0b95.tar.gz
nixpkgs-965237a6eef394d6acf3b0e31f35b27e65ab0b95.tar.bz2
nixpkgs-965237a6eef394d6acf3b0e31f35b27e65ab0b95.tar.lz
nixpkgs-965237a6eef394d6acf3b0e31f35b27e65ab0b95.tar.xz
nixpkgs-965237a6eef394d6acf3b0e31f35b27e65ab0b95.tar.zst
nixpkgs-965237a6eef394d6acf3b0e31f35b27e65ab0b95.zip
Use .tar.xz instead of .tar.gz for dnsmasq
To save precious bandwidth.
Diffstat (limited to 'pkgs/tools/networking/dnsmasq')
-rw-r--r--pkgs/tools/networking/dnsmasq/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/dnsmasq/default.nix b/pkgs/tools/networking/dnsmasq/default.nix
index a29edcc70ad..cec4057a284 100644
--- a/pkgs/tools/networking/dnsmasq/default.nix
+++ b/pkgs/tools/networking/dnsmasq/default.nix
@@ -4,8 +4,8 @@ stdenv.mkDerivation rec {
   name = "dnsmasq-2.71";
 
   src = fetchurl {
-    url = "http://www.thekelleys.org.uk/dnsmasq/${name}.tar.gz";
-    sha256 = "1i1l2s2bcs6yx05wh1p2rf4bl0jfdgmg77b33gh44r1rdbv6933x";
+    url = "http://www.thekelleys.org.uk/dnsmasq/${name}.tar.xz";
+    sha256 = "1fpzpzja7qr8b4kfdhh4i4sijp62c634yf0xvq2n4p7d5xbzn6a9";
   };
 
   makeFlags = "DESTDIR= BINDIR=$(out)/bin MANDIR=$(out)/man LOCALEDIR=$(out)/share/locale";