obs-studio-plugins: inherit platforms from obs-studio.meta (#441672)

authored by Tristan Ross and committed by GitHub f50c71c7 1543ecff

+42 -163
-2
pkgs/applications/video/obs-studio/plugins/default.nix
··· 64 65 obs-noise = callPackage ./obs-noise.nix { }; 66 67 - obs-nvfbc = callPackage ./obs-nvfbc.nix { }; 68 - 69 obs-pipewire-audio-capture = callPackage ./obs-pipewire-audio-capture.nix { }; 70 71 obs-recursion-effect = callPackage ./obs-recursion-effect.nix { };
··· 64 65 obs-noise = callPackage ./obs-noise.nix { }; 66 67 obs-pipewire-audio-capture = callPackage ./obs-pipewire-audio-capture.nix { }; 68 69 obs-recursion-effect = callPackage ./obs-recursion-effect.nix { };
+7 -7
pkgs/applications/video/obs-studio/plugins/input-overlay.nix
··· 4 fetchFromGitHub, 5 cmake, 6 pkg-config, 7 obs-studio, 8 libuiohook, 9 qtbase, ··· 13 SDL2, 14 }: 15 16 - stdenv.mkDerivation rec { 17 pname = "obs-input-overlay"; 18 version = "5.0.6"; 19 20 src = fetchFromGitHub { 21 owner = "univrsal"; 22 repo = "input-overlay"; 23 - rev = "refs/tags/${version}"; 24 hash = "sha256-ju4u7hhx+hTuq7Oh0DBPV8RRM8zqyyvYV74KymU0+2c="; 25 fetchSubmodules = true; 26 }; ··· 28 nativeBuildInputs = [ 29 cmake 30 pkg-config 31 ]; 32 33 buildInputs = [ ··· 47 libxkbfile 48 ]; 49 50 - cmakeFlags = [ 51 "-DCMAKE_CXX_FLAGS=-msse4.1" 52 ]; 53 ··· 62 homepage = "https://github.com/univrsal/input-overlay"; 63 maintainers = with lib.maintainers; [ glittershark ]; 64 license = lib.licenses.gpl2; 65 - platforms = lib.platforms.linux; 66 - # never built on aarch64-linux since first introduction in nixpkgs 67 - broken = stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64; 68 }; 69 - }
··· 4 fetchFromGitHub, 5 cmake, 6 pkg-config, 7 + ninja, 8 obs-studio, 9 libuiohook, 10 qtbase, ··· 14 SDL2, 15 }: 16 17 + stdenv.mkDerivation (finalAttrs: { 18 pname = "obs-input-overlay"; 19 version = "5.0.6"; 20 21 src = fetchFromGitHub { 22 owner = "univrsal"; 23 repo = "input-overlay"; 24 + tag = finalAttrs.version; 25 hash = "sha256-ju4u7hhx+hTuq7Oh0DBPV8RRM8zqyyvYV74KymU0+2c="; 26 fetchSubmodules = true; 27 }; ··· 29 nativeBuildInputs = [ 30 cmake 31 pkg-config 32 + ninja 33 ]; 34 35 buildInputs = [ ··· 49 libxkbfile 50 ]; 51 52 + cmakeFlags = lib.optionals stdenv.hostPlatform.isx86 [ 53 "-DCMAKE_CXX_FLAGS=-msse4.1" 54 ]; 55 ··· 64 homepage = "https://github.com/univrsal/input-overlay"; 65 maintainers = with lib.maintainers; [ glittershark ]; 66 license = lib.licenses.gpl2; 67 + inherit (obs-studio.meta) platforms; 68 }; 69 + })
+1
pkgs/applications/video/obs-studio/plugins/looking-glass-obs.nix
··· 37 homepage = "https://looking-glass.io/docs/stable/obs/"; 38 license = licenses.gpl2Plus; 39 maintainers = with maintainers; [ babbaj ]; 40 platforms = [ "x86_64-linux" ]; 41 }; 42 }
··· 37 homepage = "https://looking-glass.io/docs/stable/obs/"; 38 license = licenses.gpl2Plus; 39 maintainers = with maintainers; [ babbaj ]; 40 + # Hard coded x86_64 support 41 platforms = [ "x86_64-linux" ]; 42 }; 43 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-3d-effect.nix
··· 33 homepage = "https://github.com/exeldro/obs-3d-effect"; 34 maintainers = with maintainers; [ flexiondotorg ]; 35 license = licenses.gpl2Plus; 36 - platforms = [ 37 - "x86_64-linux" 38 - "i686-linux" 39 - ]; 40 }; 41 }
··· 33 homepage = "https://github.com/exeldro/obs-3d-effect"; 34 maintainers = with maintainers; [ flexiondotorg ]; 35 license = licenses.gpl2Plus; 36 + inherit (obs-studio.meta) platforms; 37 }; 38 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-aitum-multistream.nix
··· 46 homepage = "https://github.com/Aitum/obs-aitum-multistream"; 47 maintainers = with lib.maintainers; [ flexiondotorg ]; 48 license = lib.licenses.gpl2Plus; 49 - platforms = [ 50 - "x86_64-linux" 51 - "i686-linux" 52 - ]; 53 }; 54 }
··· 46 homepage = "https://github.com/Aitum/obs-aitum-multistream"; 47 maintainers = with lib.maintainers; [ flexiondotorg ]; 48 license = lib.licenses.gpl2Plus; 49 + inherit (obs-studio.meta) platforms; 50 }; 51 }
+1 -1
pkgs/applications/video/obs-studio/plugins/obs-backgroundremoval/default.nix
··· 58 homepage = "https://github.com/royshil/obs-backgroundremoval"; 59 maintainers = with maintainers; [ zahrun ]; 60 license = licenses.mit; 61 - platforms = [ "x86_64-linux" ]; 62 }; 63 }
··· 58 homepage = "https://github.com/royshil/obs-backgroundremoval"; 59 maintainers = with maintainers; [ zahrun ]; 60 license = licenses.mit; 61 + inherit (obs-studio.meta) platforms; 62 }; 63 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-command-source.nix
··· 32 homepage = "https://github.com/norihiro/command-source"; 33 maintainers = with maintainers; [ flexiondotorg ]; 34 license = licenses.gpl2Plus; 35 - platforms = [ 36 - "x86_64-linux" 37 - "i686-linux" 38 - ]; 39 }; 40 }
··· 32 homepage = "https://github.com/norihiro/command-source"; 33 maintainers = with maintainers; [ flexiondotorg ]; 34 license = licenses.gpl2Plus; 35 + inherit (obs-studio.meta) platforms; 36 }; 37 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-dir-watch-media.nix
··· 29 homepage = "https://github.com/exeldro/obs-dir-watch-media"; 30 maintainers = with maintainers; [ flexiondotorg ]; 31 license = licenses.gpl2Only; 32 - platforms = [ 33 - "x86_64-linux" 34 - "i686-linux" 35 - ]; 36 }; 37 }
··· 29 homepage = "https://github.com/exeldro/obs-dir-watch-media"; 30 maintainers = with maintainers; [ flexiondotorg ]; 31 license = licenses.gpl2Only; 32 + inherit (obs-studio.meta) platforms; 33 }; 34 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-gradient-source.nix
··· 33 homepage = "https://github.com/exeldro/obs-gradient-source"; 34 maintainers = with maintainers; [ flexiondotorg ]; 35 license = licenses.gpl2Plus; 36 - platforms = [ 37 - "x86_64-linux" 38 - "i686-linux" 39 - ]; 40 }; 41 }
··· 33 homepage = "https://github.com/exeldro/obs-gradient-source"; 34 maintainers = with maintainers; [ flexiondotorg ]; 35 license = licenses.gpl2Plus; 36 + inherit (obs-studio.meta) platforms; 37 }; 38 }
+1 -1
pkgs/applications/video/obs-studio/plugins/obs-hyperion/default.nix
··· 54 homepage = "https://github.com/hyperion-project/hyperion-obs-plugin"; 55 license = licenses.mit; 56 maintainers = with maintainers; [ algram ]; 57 - platforms = [ "x86_64-linux" ]; 58 }; 59 }
··· 54 homepage = "https://github.com/hyperion-project/hyperion-obs-plugin"; 55 license = licenses.mit; 56 maintainers = with maintainers; [ algram ]; 57 + inherit (obs-studio.meta) platforms; 58 }; 59 }
+1 -1
pkgs/applications/video/obs-studio/plugins/obs-livesplit-one/default.nix
··· 43 mit 44 ]; 45 maintainers = [ maintainers.Bauke ]; 46 - platforms = obs-studio.meta.platforms; 47 }; 48 }
··· 43 mit 44 ]; 45 maintainers = [ maintainers.Bauke ]; 46 + inherit (obs-studio.meta) platforms; 47 }; 48 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-markdown.nix
··· 29 homepage = "https://github.com/exeldro/obs-markdown"; 30 maintainers = with maintainers; [ flexiondotorg ]; 31 license = licenses.gpl2Only; 32 - platforms = [ 33 - "x86_64-linux" 34 - "i686-linux" 35 - ]; 36 }; 37 }
··· 29 homepage = "https://github.com/exeldro/obs-markdown"; 30 maintainers = with maintainers; [ flexiondotorg ]; 31 license = licenses.gpl2Only; 32 + inherit (obs-studio.meta) platforms; 33 }; 34 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-move-transition.nix
··· 29 homepage = "https://github.com/exeldro/obs-move-transition"; 30 maintainers = with maintainers; [ starcraft66 ]; 31 license = licenses.gpl2Plus; 32 - platforms = [ 33 - "x86_64-linux" 34 - "i686-linux" 35 - ]; 36 }; 37 }
··· 29 homepage = "https://github.com/exeldro/obs-move-transition"; 30 maintainers = with maintainers; [ starcraft66 ]; 31 license = licenses.gpl2Plus; 32 + inherit (obs-studio.meta) platforms; 33 }; 34 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-multi-rtmp/default.nix
··· 56 description = "Multi-site simultaneous broadcast plugin for OBS Studio"; 57 license = lib.licenses.gpl2Only; 58 maintainers = with lib.maintainers; [ jk ]; 59 - platforms = [ 60 - "x86_64-linux" 61 - "i686-linux" 62 - ]; 63 }; 64 }
··· 56 description = "Multi-site simultaneous broadcast plugin for OBS Studio"; 57 license = lib.licenses.gpl2Only; 58 maintainers = with lib.maintainers; [ jk ]; 59 + inherit (obs-studio.meta) platforms; 60 }; 61 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-mute-filter.nix
··· 32 homepage = "https://github.com/norihiro/obs-mute-filter"; 33 maintainers = with maintainers; [ flexiondotorg ]; 34 license = licenses.gpl2Plus; 35 - platforms = [ 36 - "x86_64-linux" 37 - "i686-linux" 38 - ]; 39 }; 40 }
··· 32 homepage = "https://github.com/norihiro/obs-mute-filter"; 33 maintainers = with maintainers; [ flexiondotorg ]; 34 license = licenses.gpl2Plus; 35 + inherit (obs-studio.meta) platforms; 36 }; 37 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-noise.nix
··· 30 homepage = "https://github.com/FiniteSingularity/obs-noise"; 31 maintainers = with maintainers; [ flexiondotorg ]; 32 license = licenses.gpl2Only; 33 - platforms = [ 34 - "x86_64-linux" 35 - "i686-linux" 36 - ]; 37 }; 38 }
··· 30 homepage = "https://github.com/FiniteSingularity/obs-noise"; 31 maintainers = with maintainers; [ flexiondotorg ]; 32 license = licenses.gpl2Only; 33 + inherit (obs-studio.meta) platforms; 34 }; 35 }
-43
pkgs/applications/video/obs-studio/plugins/obs-nvfbc.nix
··· 1 - { 2 - stdenv, 3 - lib, 4 - fetchFromGitLab, 5 - meson, 6 - ninja, 7 - pkg-config, 8 - obs-studio, 9 - libGL, 10 - libX11, 11 - }: 12 - 13 - stdenv.mkDerivation rec { 14 - pname = "obs-nvfbc"; 15 - version = "0.0.7"; 16 - 17 - src = fetchFromGitLab { 18 - owner = "fzwoch"; 19 - repo = "obs-nvfbc"; 20 - rev = "v${version}"; 21 - hash = "sha256-AJ3K0O1vrixskn+/Tpg7LsgRO8N4sgDo1Y6gg3CwGVo="; 22 - }; 23 - 24 - nativeBuildInputs = [ 25 - meson 26 - pkg-config 27 - ninja 28 - ]; 29 - buildInputs = [ 30 - obs-studio 31 - libGL 32 - libX11 33 - ]; 34 - 35 - meta = with lib; { 36 - description = "OBS Studio source plugin for NVIDIA FBC API"; 37 - homepage = "https://gitlab.com/fzwoch/obs-nvfbc"; 38 - license = licenses.gpl2Only; 39 - maintainers = with maintainers; [ babbaj ]; 40 - platforms = [ "x86_64-linux" ]; 41 - broken = true; 42 - }; 43 - }
···
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-pipewire-audio-capture.nix
··· 42 fazzi 43 ]; 44 license = licenses.gpl2Plus; 45 - platforms = [ 46 - "x86_64-linux" 47 - "i686-linux" 48 - ]; 49 }; 50 }
··· 42 fazzi 43 ]; 44 license = licenses.gpl2Plus; 45 + inherit (obs-studio.meta) platforms; 46 }; 47 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-retro-effects.nix
··· 31 homepage = "https://github.com/FiniteSingularity/obs-retro-effects"; 32 maintainers = with maintainers; [ flexiondotorg ]; 33 license = licenses.gpl2Plus; 34 - platforms = [ 35 - "x86_64-linux" 36 - "i686-linux" 37 - ]; 38 }; 39 }
··· 31 homepage = "https://github.com/FiniteSingularity/obs-retro-effects"; 32 maintainers = with maintainers; [ flexiondotorg ]; 33 license = licenses.gpl2Plus; 34 + inherit (obs-studio.meta) platforms; 35 }; 36 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-rgb-levels.nix
··· 25 homepage = "https://github.com/wimpysworld/obs-rgb-levels"; 26 maintainers = with maintainers; [ flexiondotorg ]; 27 license = licenses.gpl2Only; 28 - platforms = [ 29 - "x86_64-linux" 30 - "i686-linux" 31 - ]; 32 }; 33 }
··· 25 homepage = "https://github.com/wimpysworld/obs-rgb-levels"; 26 maintainers = with maintainers; [ flexiondotorg ]; 27 license = licenses.gpl2Only; 28 + inherit (obs-studio.meta) platforms; 29 }; 30 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-scale-to-sound.nix
··· 30 homepage = "https://github.com/dimtpap/obs-scale-to-sound"; 31 maintainers = with lib.maintainers; [ flexiondotorg ]; 32 license = lib.licenses.gpl2Plus; 33 - platforms = [ 34 - "x86_64-linux" 35 - "i686-linux" 36 - ]; 37 }; 38 }
··· 30 homepage = "https://github.com/dimtpap/obs-scale-to-sound"; 31 maintainers = with lib.maintainers; [ flexiondotorg ]; 32 license = lib.licenses.gpl2Plus; 33 + inherit (obs-studio.meta) platforms; 34 }; 35 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-scene-as-transition.nix
··· 29 homepage = "https://github.com/andilippi/obs-scene-as-transition"; 30 maintainers = with maintainers; [ flexiondotorg ]; 31 license = licenses.gpl2Plus; 32 - platforms = [ 33 - "x86_64-linux" 34 - "i686-linux" 35 - ]; 36 }; 37 }
··· 29 homepage = "https://github.com/andilippi/obs-scene-as-transition"; 30 maintainers = with maintainers; [ flexiondotorg ]; 31 license = licenses.gpl2Plus; 32 + inherit (obs-studio.meta) platforms; 33 }; 34 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-shaderfilter.nix
··· 40 homepage = "https://github.com/exeldro/obs-shaderfilter"; 41 maintainers = with maintainers; [ flexiondotorg ]; 42 license = licenses.gpl2Plus; 43 - platforms = [ 44 - "x86_64-linux" 45 - "i686-linux" 46 - ]; 47 }; 48 }
··· 40 homepage = "https://github.com/exeldro/obs-shaderfilter"; 41 maintainers = with maintainers; [ flexiondotorg ]; 42 license = licenses.gpl2Plus; 43 + inherit (obs-studio.meta) platforms; 44 }; 45 }
+1 -1
pkgs/applications/video/obs-studio/plugins/obs-source-record.nix
··· 36 shackra 37 ]; 38 license = licenses.gpl2Only; 39 - platforms = [ "x86_64-linux" ]; 40 }; 41 }
··· 36 shackra 37 ]; 38 license = licenses.gpl2Only; 39 + inherit (obs-studio.meta) platforms; 40 }; 41 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-source-switcher.nix
··· 32 homepage = "https://github.com/exeldro/obs-source-switcher"; 33 maintainers = with lib.maintainers; [ flexiondotorg ]; 34 license = lib.licenses.gpl2Plus; 35 - platforms = [ 36 - "x86_64-linux" 37 - "i686-linux" 38 - ]; 39 }; 40 }
··· 32 homepage = "https://github.com/exeldro/obs-source-switcher"; 33 maintainers = with lib.maintainers; [ flexiondotorg ]; 34 license = lib.licenses.gpl2Plus; 35 + inherit (obs-studio.meta) platforms; 36 }; 37 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-stroke-glow-shadow.nix
··· 30 homepage = "https://github.com/FiniteSingularity/obs-stroke-glow-shadow"; 31 maintainers = with maintainers; [ flexiondotorg ]; 32 license = licenses.gpl2Only; 33 - platforms = [ 34 - "x86_64-linux" 35 - "i686-linux" 36 - ]; 37 }; 38 }
··· 30 homepage = "https://github.com/FiniteSingularity/obs-stroke-glow-shadow"; 31 maintainers = with maintainers; [ flexiondotorg ]; 32 license = licenses.gpl2Only; 33 + inherit (obs-studio.meta) platforms; 34 }; 35 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-text-pthread.nix
··· 42 homepage = "https://github.com/norihiro/obs-text-pthread"; 43 maintainers = with maintainers; [ flexiondotorg ]; 44 license = licenses.gpl2Plus; 45 - platforms = [ 46 - "x86_64-linux" 47 - "i686-linux" 48 - ]; 49 }; 50 }
··· 42 homepage = "https://github.com/norihiro/obs-text-pthread"; 43 maintainers = with maintainers; [ flexiondotorg ]; 44 license = licenses.gpl2Plus; 45 + inherit (obs-studio.meta) platforms; 46 }; 47 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-transition-table.nix
··· 35 homepage = "https://github.com/exeldro/obs-transition-table"; 36 maintainers = with maintainers; [ flexiondotorg ]; 37 license = licenses.gpl2Plus; 38 - platforms = [ 39 - "x86_64-linux" 40 - "i686-linux" 41 - ]; 42 }; 43 }
··· 35 homepage = "https://github.com/exeldro/obs-transition-table"; 36 maintainers = with maintainers; [ flexiondotorg ]; 37 license = licenses.gpl2Plus; 38 + inherit (obs-studio.meta) platforms; 39 }; 40 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-urlsource.nix
··· 90 homepage = "https://github.com/locaal-ai/obs-urlsource"; 91 maintainers = with maintainers; [ flexiondotorg ]; 92 license = licenses.gpl2Only; 93 - platforms = [ 94 - "x86_64-linux" 95 - "i686-linux" 96 - ]; 97 }; 98 }
··· 90 homepage = "https://github.com/locaal-ai/obs-urlsource"; 91 maintainers = with maintainers; [ flexiondotorg ]; 92 license = licenses.gpl2Only; 93 + inherit (obs-studio.meta) platforms; 94 }; 95 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-vaapi/default.nix
··· 66 pedrohlc 67 ]; 68 license = lib.licenses.gpl2Plus; 69 - platforms = [ 70 - "x86_64-linux" 71 - "i686-linux" 72 - ]; 73 }; 74 }
··· 66 pedrohlc 67 ]; 68 license = lib.licenses.gpl2Plus; 69 + inherit (obs-studio.meta) platforms; 70 }; 71 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-vertical-canvas.nix
··· 47 homepage = "https://github.com/Aitum/obs-vertical-canvas"; 48 maintainers = with lib.maintainers; [ flexiondotorg ]; 49 license = lib.licenses.gpl2Plus; 50 - platforms = [ 51 - "x86_64-linux" 52 - "i686-linux" 53 - ]; 54 }; 55 }
··· 47 homepage = "https://github.com/Aitum/obs-vertical-canvas"; 48 maintainers = with lib.maintainers; [ flexiondotorg ]; 49 license = lib.licenses.gpl2Plus; 50 + inherit (obs-studio.meta) platforms; 51 }; 52 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-vintage-filter.nix
··· 32 homepage = "https://github.com/cg2121/obs-vintage-filter"; 33 maintainers = with maintainers; [ flexiondotorg ]; 34 license = licenses.gpl2Plus; 35 - platforms = [ 36 - "x86_64-linux" 37 - "i686-linux" 38 - ]; 39 }; 40 }
··· 32 homepage = "https://github.com/cg2121/obs-vintage-filter"; 33 maintainers = with maintainers; [ flexiondotorg ]; 34 license = licenses.gpl2Plus; 35 + inherit (obs-studio.meta) platforms; 36 }; 37 }
+1 -4
pkgs/applications/video/obs-studio/plugins/obs-websocket.nix
··· 42 homepage = "https://github.com/obsproject/obs-websocket"; 43 maintainers = with maintainers; [ flexiondotorg ]; 44 license = licenses.gpl2Plus; 45 - platforms = [ 46 - "x86_64-linux" 47 - "i686-linux" 48 - ]; 49 }; 50 }
··· 42 homepage = "https://github.com/obsproject/obs-websocket"; 43 maintainers = with maintainers; [ flexiondotorg ]; 44 license = licenses.gpl2Plus; 45 + inherit (obs-studio.meta) platforms; 46 }; 47 }
+1 -4
pkgs/applications/video/obs-studio/plugins/pixel-art.nix
··· 25 homepage = "https://github.com/dspstanky/pixel-art"; 26 maintainers = with maintainers; [ flexiondotorg ]; 27 license = licenses.gpl2Only; 28 - platforms = [ 29 - "x86_64-linux" 30 - "i686-linux" 31 - ]; 32 }; 33 }
··· 25 homepage = "https://github.com/dspstanky/pixel-art"; 26 maintainers = with maintainers; [ flexiondotorg ]; 27 license = licenses.gpl2Only; 28 + inherit (obs-studio.meta) platforms; 29 }; 30 }
+1
pkgs/applications/video/obs-studio/plugins/waveform/default.nix
··· 42 homepage = "https://github.com/phandasm/waveform"; 43 maintainers = with lib.maintainers; [ matthewcroughan ]; 44 license = lib.licenses.gpl3; 45 platforms = [ "x86_64-linux" ]; 46 }; 47 }
··· 42 homepage = "https://github.com/phandasm/waveform"; 43 maintainers = with lib.maintainers; [ matthewcroughan ]; 44 license = lib.licenses.gpl3; 45 + # Hard coded x86_64 support 46 platforms = [ "x86_64-linux" ]; 47 }; 48 }
+2 -2
pkgs/by-name/nd/ndi-6/package.nix
··· 52 patchelf --set-rpath "${avahi}/lib:${stdenv.cc.libc}/lib" "$i" 53 done 54 rm $out/bin/libndi.so.${majorVersion} 55 - ln -s $out/lib/libndi.so.${version} $out/bin/libndi.so.${majorVersion} 56 # Fake ndi version 5 for compatibility with DistroAV (obs plugin using NDI) 57 - ln -s $out/lib/libndi.so.${version} $out/bin/libndi.so.5 58 mv include examples $out/ 59 mkdir -p $out/share/doc/ndi-6 60 mv licenses $out/share/doc/ndi-6/licenses
··· 52 patchelf --set-rpath "${avahi}/lib:${stdenv.cc.libc}/lib" "$i" 53 done 54 rm $out/bin/libndi.so.${majorVersion} 55 + ln -s $out/lib/libndi.so $out/bin/libndi.so.${majorVersion} 56 # Fake ndi version 5 for compatibility with DistroAV (obs plugin using NDI) 57 + ln -s $out/lib/libndi.so $out/bin/libndi.so.5 58 mv include examples $out/ 59 mkdir -p $out/share/doc/ndi-6 60 mv licenses $out/share/doc/ndi-6/licenses
+1 -1
pkgs/by-name/nd/ndi-6/version.json
··· 1 - {"hash": "sha256-10pxvHLYbQ1p3NKSTC1I3YAFkPbYSCenXTEWukqy5TY=", "version": "6.2.0"}
··· 1 + {"hash": "sha256-C99mJkUn+L43+iLt3SuFFLmGilik2D+AoH2+tHnuFNQ=", "version": "6.2.0"}