obs-studio-plugins.obs-source-record: 2022-11-10 -> 0.3.2

This commit is contained in:
Franz Pletz 2023-07-11 13:31:58 +02:00
parent 9bf10ac3c5
commit 6eeae9d1c2
No known key found for this signature in database
GPG Key ID: 846FDED7792617B4

View File

@ -1,21 +1,31 @@
{ lib, stdenv, fetchFromGitHub, cmake, obs-studio }:
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, obs-studio }:
stdenv.mkDerivation rec {
pname = "obs-source-record";
version = "unstable-2022-11-10";
version = "0.3.2";
src = fetchFromGitHub {
owner = "exeldro";
repo = "obs-source-record";
rev = "4a543d3577d56a27f5f2b9aa541a466b37dafde0";
sha256 = "sha256-LoMgrWZ7r6lu2fisNvqrAiFvxWQQDE6lSxUHkMB/ZPY=";
rev = version;
sha256 = "sha256-H65uQ9HnKmHs52v3spG92ayeYH/TvmwcMoePMmBMqN8=";
};
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
];
NIX_CFLAGS_COMPILE = [ "-Wno-error=deprecated-declarations" ];
cmakeFlags = [
"-DBUILD_OUT_OF_TREE=On"
];