about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorDaniel Peebles <copumpkin@users.noreply.github.com>2016-11-11 15:47:52 -0500
committerGitHub <noreply@github.com>2016-11-11 15:47:52 -0500
commitcd112c5e03d169915d34b7f820b567356450e8f6 (patch)
tree38af1630e968546cae5ce57ed95da5ef1cce6cef /pkgs/development
parent3a6f99765c965775f37b0ef97056994327fed4c9 (diff)
parent7d4ffab20206a7571a1605e3cbf142c5c1c164cd (diff)
downloadnixlib-cd112c5e03d169915d34b7f820b567356450e8f6.tar
nixlib-cd112c5e03d169915d34b7f820b567356450e8f6.tar.gz
nixlib-cd112c5e03d169915d34b7f820b567356450e8f6.tar.bz2
nixlib-cd112c5e03d169915d34b7f820b567356450e8f6.tar.lz
nixlib-cd112c5e03d169915d34b7f820b567356450e8f6.tar.xz
nixlib-cd112c5e03d169915d34b7f820b567356450e8f6.tar.zst
nixlib-cd112c5e03d169915d34b7f820b567356450e8f6.zip
Merge pull request #20334 from NeQuissimus/saxon_sha512
saxon: use sha256
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/java/saxon/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/java/saxon/default.nix b/pkgs/development/libraries/java/saxon/default.nix
index 1677376230b4..fcd884f0a419 100644
--- a/pkgs/development/libraries/java/saxon/default.nix
+++ b/pkgs/development/libraries/java/saxon/default.nix
@@ -5,7 +5,7 @@ stdenv.mkDerivation {
   builder = ./unzip-builder.sh;
   src = fetchurl {
     url = mirror://sourceforge/saxon/saxon6_5_3.zip;
-    md5 = "7b8c7c187473c04d2abdb40d8ddab5c6";
+    sha256 = "0l5y3y2z4wqgh80f26dwwxwncs8v3nkz3nidv14z024lmk730vs3";
   };
 
   nativeBuildInputs = [ unzip ];