about summary refs log tree commit diff
path: root/pkgs/applications/video/obs-studio
AgeCommit message (Collapse)AuthorFilesLines
2022-01-02obs-studio-plugins.obs-nvfbc: 0.0.4 -> 0.0.5R. Ryantm1-2/+2
2021-12-11Merge pull request #149754 from r-ryantm/auto-update/obs-websocketRyan Mulligan1-2/+2
obs-studio-plugins.obs-websocket: 4.9.0 -> 4.9.1
2021-12-09obs-studio-plugins.obs-nvfbc: 0.0.3 -> 0.0.4R. Ryantm1-2/+2
2021-12-09obs-studio-plugins.obs-websocket: 4.9.0 -> 4.9.1R. Ryantm1-2/+2
2021-11-14obs-studio: avoid double-wrapping the obs binaryPeter Simons1-5/+7
Suggested in https://github.com/NixOS/nixpkgs/pull/145664#issuecomment-968107267.
2021-11-14obs-studio: use wrapGAppsHook to add required org.gtk.Settings.ColorChooser ↵Peter Simons1-2/+2
schema Fixes https://github.com/NixOS/nixpkgs/issues/145661.
2021-10-14Drop myself from meta.maintainers for most packages.Peter Simons1-1/+1
I'd like to reduce the number of Github notifications and review requests I receive.
2021-10-02obs-studio: fix doublewrappingArtturin1-4/+3
2021-09-29obs-studio-plugins.obs-multi-rtmp: 0.2.6.1 -> 0.2.7.106kellyjac1-2/+2
2021-08-30obs-studio: 27.0.0 -> 27.0.1Nils1-2/+2
2021-08-11obs-studio: add aarch64 supportJade1-7/+15
2021-08-10obs-studio-plugins.obs-multi-rtmp: 0.2.6 -> 0.2.6.106kellyjac1-2/+2
2021-08-05Merge pull request #131172 from babbaj/obs-nvfbcSandro2-0/+26
obs-nvfbc: init at 0.0.3
2021-07-30obs-studio-plugins.obs-websocket: fix attribute nameJosh Moller-Mara1-0/+1
obs-websocket.nix existed, but no attribute was made for it.
2021-07-26obs-nvfbc: init at 0.0.3Babbaj2-0/+26
2021-07-06looking-glass-obs: initBabbaj2-0/+30
2021-06-30obs-move-transition: fix patch pathTristan Gosselin-Hane2-1/+2
2021-06-27obs-move-transition: 2.3.0 -> 2.4.3 (#128270)Tristan2-7/+6
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-06-17obs-studio: add plugin wrapper (#125308)V13-147/+61
* obs-studio: tidy things up a little * obs-studio: add plugin wrapper This allows users to install plugins into their OBS Studio, like so: wrapOBS { plugins = with obs-studio-plugins; [ wlrobs obs-multi-rtmp obs-gstreamer ]; } * obs-gstreamer: convert to plugin * obs-move-transition: convert to plugin * obs-multi-rtmp: convert to plugin * obs-ndi: convert to plugin * obs-v4l2sink: remove The functionality provided by this package is included in the upstream project as of version 26.1. Link: https://github.com/CatxFish/obs-v4l2sink/issues/56#issuecomment-753191690 Link: https://github.com/obsproject/obs-studio/releases/tag/26.1.0 * wlrobs: convert to plugin, unstable-2020-06-22 -> unstable-2021-05-13
2021-06-10obs-studio: Fix compilation with latest CEFV3-0/+70
2021-06-10Change all alsaLib references to alsa-libAndersonTorres1-2/+2
2021-06-03Merge pull request #125261 from deviant/bump-obsSandro1-2/+2
obs-studio: 26.1.2 -> 27.0.0
2021-06-02Merge pull request #119057 from erdnaxe/obs-websocketSandro1-0/+39
2021-06-02obs-websocket: init at 4.9.0Alexandre Iooss1-0/+39
2021-06-01obs-studio: 26.1.2 -> 27.0.0V1-2/+2
2021-04-12Merge pull request #118354 from heijligen/obs-studioSandro1-1/+4
obs-studio: add pipewire to buildInputs
2021-04-08obs-multi-rtmp: init at 0.2.606kellyjac1-0/+43
2021-04-07obs-studio: add pipewire to buildInputsThomas Heijligen1-1/+4
obs-studio (git master) has support for capturing wayland windows via pipewire. To build further releases of obs-studio this adds pipewire to buildInputs https://github.com/obsproject/obs-studio/pull/4287
2021-03-18obs-studio: add wayland to buildInputsThomas Heijligen1-0/+2
obs-studio (git master) has native wayland support. To build further releases of obs-studio this adds wayland to buildInputs https://github.com/obsproject/obs-studio/wiki/Install-Instructions#linux-build-directions https://github.com/obsproject/obs-studio/pull/2484
2021-01-29Merge staging-next into staginggithub-actions[bot]1-3/+3
2021-01-29obs-studio: 26.0.2 -> 26.1.2 (#111029)Ashlynn Anderson1-3/+3
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-01-28Merge staging-next into staginggithub-actions[bot]1-0/+44
2021-01-28obs-gstreamer: init at 0.2.1Ales Huzik1-0/+44
2021-01-26Merge pull request #108888 from ttuegel/feature--staging--qt-no-mkDerivationThomas Tuegel2-0/+4
Qt: Do not require mkDerivation
2021-01-25qtbase: Check for wrapQtAppsHook in setupHookThomas Tuegel2-0/+4
2021-01-25obs-move-transition: 2.0.2 -> 2.3.0Tristan Gosselin-Hane2-5/+6
2021-01-16pkgs/applications: pkgconfig -> pkg-configBen Siraphob2-4/+4
2021-01-15pkgs/applications: stdenv.lib -> libBen Siraphob1-2/+2
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch3-5/+5
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2020-11-20obs-move-transition: init at 2.0.2Tristan Gosselin-Hane2-0/+94
2020-11-01Remove obs-linuxbrowserPhilip Munksgaard2-50/+0
No longer needed since #99284
2020-11-01obs-studio: Enable builtin browser supportPhilip Munksgaard1-2/+21
Since version 25, OBS Studio has shipped with a version of obs-browser that includes linux support (which means that we don't need the obs-linuxbrowser any more). This commit enables the builtin browser source. Fixes #98035 Thanks to @mohe2015 for fixing a patchelf issue I had!
2020-10-25obs-studio: 26.0.0 -> 26.0.2R. RyanTM1-2/+2
2020-10-25Merge pull request #100456 from maralorn/boolToStringAndreas Rammhold1-2/+2
treewide: De-inline uses of lib.boolToString
2020-10-17Update obs-ndi plugin to latestJoshua Campbell1-3/+3
2020-10-14treewide: De-inline uses of lib.boolToStringMalte Brandy1-2/+2
This commit should not change eval results
2020-10-01obs-studio: 25.0.8 -> 26.0.0Jonathan Ringer1-2/+2
2020-09-26obs-studio: use libvlcThomas Tuegel1-3/+3
2020-09-22obs-v4l2sink: update to latest git 'master' versionPeter Simons1-2/+2
2020-09-07obs-ndi: pin to qt514Thomas Tuegel1-2/+2