Merge pull request #91398 from tasmo/processing-3.5.4

processing: 3.5.3 -> 3.5.4

authored by

Niklas Hambüchen and committed by
GitHub
625f6b22 15e8fa9f

+7 -5
+7 -5
pkgs/applications/graphics/processing/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "processing"; 5 - version = "3.5.3"; 5 + version = "3.5.4"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "processing"; 9 9 repo = "processing"; 10 - rev = "processing-0269-${version}"; 11 - sha256 = "0ajniy3a0i0rx7is46r85yh3ah4zm4ra1gbllmihw9pmnfjgfajn"; 10 + rev = "processing-0270-${version}"; 11 + sha256 = "0cvv8jda9y8qnfcsziasyv3w7h3w22q78ihr23cm4an63ghxci58"; 12 12 }; 13 13 14 14 nativeBuildInputs = [ ant rsync makeWrapper ]; ··· 22 22 # do not download a file during build 23 23 ${xmlstarlet}/bin/xmlstarlet ed --inplace -P -d '//get[@src="http://download.processing.org/reference.zip"]' build/build.xml 24 24 install -D -m0444 ${fetchurl { 25 - url = "http://download.processing.org/reference.zip"; 26 - sha256 = "198bpk8mzns6w5h0zdf50wr6iv7sgdi6v7jznj5rbsnpgyilxz35"; 25 + # Use archive.org link for reproducibility until the following issue is fixed: 26 + # https://github.com/processing/processing/issues/5711 27 + url = "https://web.archive.org/web/20200406132357/https://download.processing.org/reference.zip"; 28 + sha256 = "093hc7kc9wfxqgf5dzfmfp68pbsy8x647cj0a25vgjm1swi61zbi"; 27 29 } 28 30 } ./java/reference.zip 29 31