Unverified Commit a3068ebb authored by Tristan Ross's avatar Tristan Ross
Browse files

obs-studio-plugins: inherit platforms from obs-studio.meta

Inherits platforms from obs-studio.meta so most builds on aarch64-linux.

Skips the following due to not supporting aarch64-linux:

- looking-glass-obs
- waveform
parent 9f5adfab
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -37,6 +37,7 @@ stdenv.mkDerivation {
    homepage = "https://looking-glass.io/docs/stable/obs/";
    license = licenses.gpl2Plus;
    maintainers = with maintainers; [ babbaj ];
    # Hard coded x86_64 support
    platforms = [ "x86_64-linux" ];
  };
}
+1 −4
Original line number Diff line number Diff line
@@ -33,9 +33,6 @@ stdenv.mkDerivation rec {
    homepage = "https://github.com/exeldro/obs-3d-effect";
    maintainers = with maintainers; [ flexiondotorg ];
    license = licenses.gpl2Plus;
    platforms = [
      "x86_64-linux"
      "i686-linux"
    ];
    inherit (obs-studio.meta) platforms;
  };
}
+1 −4
Original line number Diff line number Diff line
@@ -46,9 +46,6 @@ stdenv.mkDerivation rec {
    homepage = "https://github.com/Aitum/obs-aitum-multistream";
    maintainers = with lib.maintainers; [ flexiondotorg ];
    license = lib.licenses.gpl2Plus;
    platforms = [
      "x86_64-linux"
      "i686-linux"
    ];
    inherit (obs-studio.meta) platforms;
  };
}
+1 −1
Original line number Diff line number Diff line
@@ -58,6 +58,6 @@ stdenv.mkDerivation rec {
    homepage = "https://github.com/royshil/obs-backgroundremoval";
    maintainers = with maintainers; [ zahrun ];
    license = licenses.mit;
    platforms = [ "x86_64-linux" ];
    inherit (obs-studio.meta) platforms;
  };
}
+1 −4
Original line number Diff line number Diff line
@@ -32,9 +32,6 @@ stdenv.mkDerivation rec {
    homepage = "https://github.com/norihiro/command-source";
    maintainers = with maintainers; [ flexiondotorg ];
    license = licenses.gpl2Plus;
    platforms = [
      "x86_64-linux"
      "i686-linux"
    ];
    inherit (obs-studio.meta) platforms;
  };
}
Loading