File tree Expand file tree Collapse file tree 1 file changed +24
-14
lines changed
pkgs/applications/video/obs-studio/plugins Expand file tree Collapse file tree 1 file changed +24
-14
lines changed Original file line number Diff line number Diff line change 1- { lib
2- , stdenv
3- , fetchFromGitHub
4- , cmake
5- , curl
6- , obs-studio
7- , qtbase
1+ {
2+ lib ,
3+ stdenv ,
4+ fetchFromGitHub ,
5+ cmake ,
6+ curl ,
7+ obs-studio ,
8+ qtbase ,
89} :
910
1011stdenv . mkDerivation rec {
1112 pname = "obs-vertical-canvas" ;
12- version = "1.4.9 " ;
13+ version = "1.4.10 " ;
1314
1415 src = fetchFromGitHub {
1516 owner = "Aitum" ;
1617 repo = "obs-vertical-canvas" ;
1718 rev = version ;
18- sha256 = "sha256-DFSwcN7XadHa1SGEHUdtRqPJMtS23y4dU4e/F8QmUUo =" ;
19+ sha256 = "sha256-0XfJ8q8n2ANO0oDtLZhZjRunZ5S1EouQ6Ak/pxEQYOQ =" ;
1920 } ;
2021
2122 nativeBuildInputs = [ cmake ] ;
22- buildInputs = [ curl obs-studio qtbase ] ;
23+
24+ buildInputs = [
25+ curl
26+ obs-studio
27+ qtbase
28+ ] ;
2329
2430 cmakeFlags = [
2531 "-DBUILD_OUT_OF_TREE=On"
32+ ''-DCMAKE_CXX_FLAGS="-Wno-error=deprecated-declarations"''
2633 ] ;
2734
2835 dontWrapQtApps = true ;
@@ -32,11 +39,14 @@ stdenv.mkDerivation rec {
3239 rm -rf $out/obs-plugins
3340 '' ;
3441
35- meta = with lib ; {
42+ meta = {
3643 description = "Plugin for OBS Studio to add vertical canvas" ;
3744 homepage = "https://github.com/Aitum/obs-vertical-canvas" ;
38- maintainers = with maintainers ; [ flexiondotorg ] ;
39- license = licenses . gpl2Plus ;
40- platforms = [ "x86_64-linux" "i686-linux" ] ;
45+ maintainers = with lib . maintainers ; [ flexiondotorg ] ;
46+ license = lib . licenses . gpl2Plus ;
47+ platforms = [
48+ "x86_64-linux"
49+ "i686-linux"
50+ ] ;
4151 } ;
4252}
You can’t perform that action at this time.
0 commit comments