Merge pull request #296935 from wegank/obs-source-clone-bump

obs-studio-plugins.obs-source-clone: 0.1.4 -> 0.1.4-unstable-2024-02-19
This commit is contained in:
Weijia Wang 2024-03-25 16:02:06 +01:00 committed by GitHub
commit 3d9f49ad65
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 6 deletions

View File

@ -5,22 +5,22 @@
, obs-studio
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation {
pname = "obs-source-clone";
version = "0.1.4";
version = "0.1.4-unstable-2024-02-19";
src = fetchFromGitHub {
owner = "exeldro";
repo = "obs-source-clone";
rev = version;
sha256 = "sha256-E2pHJO3cdOXmSlTVGsz4tncm9fMaa8Rhsq9YZDNidjs=";
rev = "d1524d5d932d6841a1fbd6061cc4a0033fb615b7";
hash = "sha256-W9IIIGQdreI2FQGii5NUB5tVHcqsiYAKTutOHEPCyms=";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ obs-studio ];
cmakeFlags = [
"-DBUILD_OUT_OF_TREE=On"
(lib.cmakeBool "BUILD_OUT_OF_TREE" true)
];
postInstall = ''
@ -32,6 +32,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/exeldro/obs-source-clone";
maintainers = with maintainers; [ flexiondotorg ];
license = licenses.gpl2Plus;
platforms = [ "x86_64-linux" "i686-linux" ];
platforms = platforms.linux;
};
}