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-18 16:40:10 +01:00
parent 56614a4a4a
commit 12e6203628
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;
};
}