summary refs log tree commit diff
diff options
context:
space:
mode:
authormaterus <materus@podkos.pl>2023-10-08 17:36:15 +0200
committermaterus <materus@podkos.pl>2023-10-08 17:36:15 +0200
commit6f1a7f8dc82b7e59a0b236de0c72c334a674ce09 (patch)
treeeb6323dc4a31329b154d987c6697cc2b8b979049
parent6fa87aba8af6ef47aa32782feeab7fdf7ea6811d (diff)
downloadnixpkgs-6f1a7f8dc82b7e59a0b236de0c72c334a674ce09.tar
nixpkgs-6f1a7f8dc82b7e59a0b236de0c72c334a674ce09.tar.gz
nixpkgs-6f1a7f8dc82b7e59a0b236de0c72c334a674ce09.tar.bz2
nixpkgs-6f1a7f8dc82b7e59a0b236de0c72c334a674ce09.tar.lz
nixpkgs-6f1a7f8dc82b7e59a0b236de0c72c334a674ce09.tar.xz
nixpkgs-6f1a7f8dc82b7e59a0b236de0c72c334a674ce09.tar.zst
nixpkgs-6f1a7f8dc82b7e59a0b236de0c72c334a674ce09.zip
obs-studio: format comments
-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 a681def6a4a..d01c21a2d42 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
   '';