obs-studio: 31.0.4 -> 31.1.0 (#423434)

authored by

Franz Pletz and committed by
GitHub
2023ab05 ef4c7277

+9 -7
+9 -7
pkgs/applications/video/obs-studio/default.nix
··· 60 libvpl, 61 qrcodegencpp, 62 nix-update-script, 63 }: 64 65 let 66 inherit (lib) optional optionals; 67 68 cef = cef-binary.overrideAttrs (oldAttrs: { 69 - version = "127.3.5"; 70 __intentionallyOverridingVersion = true; # `cef-binary` uses the overridden `srcHash` values in its source FOD 71 - gitRevision = "114ea2a"; 72 - chromiumVersion = "127.0.6533.120"; 73 74 srcHash = 75 { 76 - aarch64-linux = "sha256-s8dR97rAO0mCUwbpYnPWyY3t8movq05HhZZKllhZdBs="; 77 - x86_64-linux = "sha256-57E7bZKpViWno9W4AaaSjL9B4uxq+rDXAou1tsiODUg="; 78 } 79 .${stdenv.hostPlatform.system} or (throw "unsupported system ${stdenv.hostPlatform.system}"); 80 }); 81 in 82 stdenv.mkDerivation (finalAttrs: { 83 pname = "obs-studio"; 84 - version = "31.0.4"; 85 86 src = fetchFromGitHub { 87 owner = "obsproject"; 88 repo = "obs-studio"; 89 rev = finalAttrs.version; 90 - hash = "sha256-YxBPVXin8oJlo++oJogY1WMamIJmRqtSmKZDBsIZPU4="; 91 fetchSubmodules = true; 92 }; 93 ··· 107 pkg-config 108 wrapGAppsHook3 109 wrapQtAppsHook 110 ] 111 ++ optional scriptingSupport swig 112 ++ optional cudaSupport autoAddDriverRunpath;
··· 60 libvpl, 61 qrcodegencpp, 62 nix-update-script, 63 + extra-cmake-modules, 64 }: 65 66 let 67 inherit (lib) optional optionals; 68 69 cef = cef-binary.overrideAttrs (oldAttrs: { 70 + version = "138.0.17"; 71 __intentionallyOverridingVersion = true; # `cef-binary` uses the overridden `srcHash` values in its source FOD 72 + gitRevision = "ac9b751"; 73 + chromiumVersion = "138.0.7204.97"; 74 75 srcHash = 76 { 77 + aarch64-linux = "sha256-kdO7c9oUfv0HK8wTmvYzw9S6EapnSGEQNCGN9D1JSL0="; 78 + x86_64-linux = "sha256-3qgIhen6l/kxttyw0z78nmwox62riVhlmFSGPkUot7g="; 79 } 80 .${stdenv.hostPlatform.system} or (throw "unsupported system ${stdenv.hostPlatform.system}"); 81 }); 82 in 83 stdenv.mkDerivation (finalAttrs: { 84 pname = "obs-studio"; 85 + version = "31.1.0"; 86 87 src = fetchFromGitHub { 88 owner = "obsproject"; 89 repo = "obs-studio"; 90 rev = finalAttrs.version; 91 + hash = "sha256-espGKoKldgjWoCEE+Xor7+N5N86HvWCf0V18tb8GaC8="; 92 fetchSubmodules = true; 93 }; 94 ··· 108 pkg-config 109 wrapGAppsHook3 110 wrapQtAppsHook 111 + extra-cmake-modules 112 ] 113 ++ optional scriptingSupport swig 114 ++ optional cudaSupport autoAddDriverRunpath;