From e23205948dd7f500d676c74345ffb582d21f183f Mon Sep 17 00:00:00 2001 From: Aroun Olorin Date: Mon, 18 Mar 2024 10:53:44 +0530 Subject: [PATCH] 1.1.12 --- .../plugins/obs-backgroundremoval/default.nix | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/pkgs/applications/video/obs-studio/plugins/obs-backgroundremoval/default.nix b/pkgs/applications/video/obs-studio/plugins/obs-backgroundremoval/default.nix index 4260db538cc9f57..da816bbb4e1b5c5 100644 --- a/pkgs/applications/video/obs-studio/plugins/obs-backgroundremoval/default.nix +++ b/pkgs/applications/video/obs-studio/plugins/obs-backgroundremoval/default.nix @@ -1,7 +1,6 @@ { lib , stdenv , fetchFromGitHub -, fetchpatch , cmake , ninja , obs-studio @@ -13,28 +12,15 @@ stdenv.mkDerivation rec { pname = "obs-backgroundremoval"; - version = "1.1.10"; + version = "1.1.12"; src = fetchFromGitHub { owner = "occ-ai"; repo = "obs-backgroundremoval"; rev = "${version}"; - hash = "sha256-6OTtmjXS3fiorEPUSjjqrS8u9fVJnnZZoD722W3JQO8="; + hash = "sha256-0TE7g/HvFzon+kNjebLEG674U7T0axteB4IR2vT85Vw="; }; - patches = [ - # build without GPU support - (fetchpatch { - url = "https://patch-diff.githubusercontent.com/raw/occ-ai/obs-backgroundremoval/pull/524.patch"; - sha256 = "sha256-ewETfFcD/0zscsUAPO/1UpytHRdhq/eSrzDcRIUdAxY="; - }) - # fix build without GPU support - (fetchpatch { - url = "https://patch-diff.githubusercontent.com/raw/occ-ai/obs-backgroundremoval/pull/530.patch"; - sha256 = "sha256-sPZ6Va3d2D0yHWN/bcrMBwNjCNqPXED6I7ipeSU+ThI="; - }) - ]; - nativeBuildInputs = [ cmake ninja ]; buildInputs = [ obs-studio onnxruntime opencv qt6.qtbase curl ];