summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMatthew Bauer <mjbauer95@gmail.com>2018-03-17 03:53:31 -0500
committerMatthew Bauer <mjbauer95@gmail.com>2018-03-17 03:53:31 -0500
commit26398c030bc7811fb9ab31466d198dabe5dbdfd7 (patch)
tree38eff3b142ff332c17db06212e2c55c1dbbd28da /pkgs
parent9c8137ca81fec5db81e0b9dc28055fa02548eeae (diff)
downloadnixpkgs-26398c030bc7811fb9ab31466d198dabe5dbdfd7.tar
nixpkgs-26398c030bc7811fb9ab31466d198dabe5dbdfd7.tar.gz
nixpkgs-26398c030bc7811fb9ab31466d198dabe5dbdfd7.tar.bz2
nixpkgs-26398c030bc7811fb9ab31466d198dabe5dbdfd7.tar.lz
nixpkgs-26398c030bc7811fb9ab31466d198dabe5dbdfd7.tar.xz
nixpkgs-26398c030bc7811fb9ab31466d198dabe5dbdfd7.tar.zst
nixpkgs-26398c030bc7811fb9ab31466d198dabe5dbdfd7.zip
ant: 1.9.6 -> 1.10.2
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:
- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 1.10.2 with grep in /nix/store/ymhiik4c7604dxzlnvrrzj88d2lkcy16-ant-1.10.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/build-managers/apache-ant/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/build-managers/apache-ant/default.nix b/pkgs/development/tools/build-managers/apache-ant/default.nix
index 8816a005ca0..b6c2702485b 100644
--- a/pkgs/development/tools/build-managers/apache-ant/default.nix
+++ b/pkgs/development/tools/build-managers/apache-ant/default.nix
@@ -1,6 +1,6 @@
 { fetchurl, stdenv, coreutils, makeWrapper }:
 
-let version = "1.9.6"; in
+let version = "1.10.2"; in
 
 stdenv.mkDerivation {
   name = "ant-${version}";
@@ -9,7 +9,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "mirror://apache/ant/binaries/apache-ant-${version}-bin.tar.bz2";
-    sha256 = "1cwd5vq175gyicw0hkm8idwa33zxwhf7xlxywaqxcqqdjql0jfx4";
+    sha256 = "0662qammjvibh9kgkxzadkayfn2r7iwnagbwaw28crqqclrb2rp1";
   };
 
   contrib = fetchurl {