summary refs log tree commit diff
path: root/pkgs/development/libraries/java
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2021-03-03 03:19:05 +0000
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-03-09 15:42:55 -0800
commitb29670737110c25fd8f03bcefe5b73a0df43a5e3 (patch)
tree45188e81a8337a215bcc623cf187595749832864 /pkgs/development/libraries/java
parenta34553bc4bb8e29a43ad179e95c1a4aadac1e679 (diff)
downloadnixpkgs-b29670737110c25fd8f03bcefe5b73a0df43a5e3.tar
nixpkgs-b29670737110c25fd8f03bcefe5b73a0df43a5e3.tar.gz
nixpkgs-b29670737110c25fd8f03bcefe5b73a0df43a5e3.tar.bz2
nixpkgs-b29670737110c25fd8f03bcefe5b73a0df43a5e3.tar.lz
nixpkgs-b29670737110c25fd8f03bcefe5b73a0df43a5e3.tar.xz
nixpkgs-b29670737110c25fd8f03bcefe5b73a0df43a5e3.tar.zst
nixpkgs-b29670737110c25fd8f03bcefe5b73a0df43a5e3.zip
commonsLang: 3.11 -> 3.12.0
Diffstat (limited to 'pkgs/development/libraries/java')
-rw-r--r--pkgs/development/libraries/java/commons/lang/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/java/commons/lang/default.nix b/pkgs/development/libraries/java/commons/lang/default.nix
index 5009fe6cac7..974f7bf9a1c 100644
--- a/pkgs/development/libraries/java/commons/lang/default.nix
+++ b/pkgs/development/libraries/java/commons/lang/default.nix
@@ -1,12 +1,12 @@
 { lib, stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
-  version = "3.11";
+  version = "3.12.0";
   pname = "commons-lang";
 
   src = fetchurl {
     url    = "mirror://apache/commons/lang/binaries/commons-lang3-${version}-bin.tar.gz";
-    sha256 = "08w7zg9v48rlaq0n17dnph8jydz9srh1pl3ffs3xdfsg9a7axjm4";
+    sha256 = "sha256-MwEkZd/Lf3kKyjM+CevxBeKl+5XCxjiz33kNPvqQjig=";
   };
 
   installPhase = ''