Loading pkgs/applications/video/obs-studio/plugins/obs-source-record.nix +11 −17 Original line number Diff line number Diff line { lib, stdenv, fetchFromGitHub, fetchpatch, cmake, obs-studio }: { lib, stdenv, fetchFromGitHub, cmake, obs-studio, }: stdenv.mkDerivation rec { pname = "obs-source-record"; version = "0.3.2"; version = "0.3.4"; src = fetchFromGitHub { owner = "exeldro"; repo = "obs-source-record"; rev = version; sha256 = "sha256-H65uQ9HnKmHs52v3spG92ayeYH/TvmwcMoePMmBMqN8="; sha256 = "sha256-VgG9Fn75aKTkth4TC9rhfj/HIOO2lIO4n3ZYmemkzx8="; }; patches = [ # fix obs 29.1 compatibility (fetchpatch { url = "https://patch-diff.githubusercontent.com/raw/exeldro/obs-source-record/pull/83.diff"; hash = "sha256-eWOjHHfoXZeoPtqvVyexSi/UQqHm8nu4FEEjma64Ly4="; }) ]; nativeBuildInputs = [ cmake ]; buildInputs = [ obs-studio ]; buildInputs = [ obs-studio ]; NIX_CFLAGS_COMPILE = [ "-Wno-error=deprecated-declarations" ]; cmakeFlags = [ "-DBUILD_OUT_OF_TREE=On" ]; cmakeFlags = [ "-DBUILD_OUT_OF_TREE=On" ]; postInstall = '' rm -rf $out/{data,obs-plugins} Loading Loading
pkgs/applications/video/obs-studio/plugins/obs-source-record.nix +11 −17 Original line number Diff line number Diff line { lib, stdenv, fetchFromGitHub, fetchpatch, cmake, obs-studio }: { lib, stdenv, fetchFromGitHub, cmake, obs-studio, }: stdenv.mkDerivation rec { pname = "obs-source-record"; version = "0.3.2"; version = "0.3.4"; src = fetchFromGitHub { owner = "exeldro"; repo = "obs-source-record"; rev = version; sha256 = "sha256-H65uQ9HnKmHs52v3spG92ayeYH/TvmwcMoePMmBMqN8="; sha256 = "sha256-VgG9Fn75aKTkth4TC9rhfj/HIOO2lIO4n3ZYmemkzx8="; }; patches = [ # fix obs 29.1 compatibility (fetchpatch { url = "https://patch-diff.githubusercontent.com/raw/exeldro/obs-source-record/pull/83.diff"; hash = "sha256-eWOjHHfoXZeoPtqvVyexSi/UQqHm8nu4FEEjma64Ly4="; }) ]; nativeBuildInputs = [ cmake ]; buildInputs = [ obs-studio ]; buildInputs = [ obs-studio ]; NIX_CFLAGS_COMPILE = [ "-Wno-error=deprecated-declarations" ]; cmakeFlags = [ "-DBUILD_OUT_OF_TREE=On" ]; cmakeFlags = [ "-DBUILD_OUT_OF_TREE=On" ]; postInstall = '' rm -rf $out/{data,obs-plugins} Loading