lol

processing: fix build

+9 -1
+9 -1
pkgs/applications/graphics/processing/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, fetchurl, xmlstarlet, makeWrapper, ant, jdk, rsync, javaPackages, libXxf86vm, gsettings-desktop-schemas }: 1 + { lib, stdenv, fetchFromGitHub, fetchpatch, fetchurl, xmlstarlet, makeWrapper, ant, jdk, rsync, javaPackages, libXxf86vm, gsettings-desktop-schemas }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "processing"; ··· 10 10 rev = "processing-0270-${version}"; 11 11 sha256 = "0cvv8jda9y8qnfcsziasyv3w7h3w22q78ihr23cm4an63ghxci58"; 12 12 }; 13 + 14 + patches = [ 15 + (fetchpatch { 16 + name = "oraclejdk-8u281-compat.patch"; 17 + url = "https://github.com/processing/processing/commit/7e176876173c93e3a00a922e7ae37951366d1761.patch"; 18 + sha256 = "g+zwpoIVgw7Sp6QWW3vyPZ/fKHk+o/YCY6xnrX8IGKo="; 19 + }) 20 + ]; 13 21 14 22 nativeBuildInputs = [ ant rsync makeWrapper ]; 15 23 buildInputs = [ jdk ];