From b3b20ca1a7e5dc5cf2f7b824f7f369f3d8904708 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Sun, 17 Oct 2021 10:52:46 +0200 Subject: [PATCH] vapoursynthPlugins.vsutil: 0.5.0 -> unstable-2021-10-23 0.6.0 does not yet include the fix for newer VapourSynth versions. --- plugins/vsutil/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/vsutil/default.nix b/plugins/vsutil/default.nix index 2f4c636..6719615 100644 --- a/plugins/vsutil/default.nix +++ b/plugins/vsutil/default.nix @@ -1,15 +1,15 @@ -{ lib, buildPythonPackage, fetchFromGitHub, vapoursynth }: +{ lib, buildPythonPackage, fetchFromGitHub, fetchpatch, vapoursynth }: buildPythonPackage rec { pname = "vsutil"; - version = "0.5.0"; + version = "unstable-2021-10-23"; # there are no tests in the pypi tarball src = fetchFromGitHub { owner = "Irrational-Encoding-Wizardry"; repo = pname; - rev = version; - sha256 = "0pv3910g5cdx132cq9f3g7rb3yxyxyvw9110vsl196xswkccl8n8"; + rev = "a101f22b7be4f28bc89ed73bfc82cce3067dc549"; + sha256 = "sha256-IQncZxpd2QNYmjMXxE++yeY4mDffBjOtE69J2lQPQUU="; }; patches = [