about summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/video/obs-studio/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/video/obs-studio/default.nix b/pkgs/applications/video/obs-studio/default.nix
index a681def6a4a89..d01c21a2d42e8 100644
--- a/pkgs/applications/video/obs-studio/default.nix
+++ b/pkgs/applications/video/obs-studio/default.nix
@@ -145,7 +145,7 @@ stdenv.mkDerivation rec {
       blackmagic-desktop-video
     ];
   in ''
-    #Remove libcef before patchelf, otherwise it will fail
+    # Remove libcef before patchelf, otherwise it will fail
     rm  $out/lib/obs-plugins/libcef.so
 
     qtWrapperArgs+=(
@@ -158,7 +158,7 @@ stdenv.mkDerivation rec {
     addOpenGLRunpath $out/lib/lib*.so
     addOpenGLRunpath $out/lib/obs-plugins/*.so
 
-    #Link libcef again after patchelf for other libs
+    # Link libcef again after patchelfing other libs
     ln -s ${libcef}/lib/libcef.so $out/lib/obs-plugins/libcef.so
   '';