Unverified Commit d387fafe authored by Ryan Lahfa's avatar Ryan Lahfa Committed by GitHub
Browse files

Merge pull request #324101 from hexchen/drop-hexchen

maintainers: remove myself
parents b756115f fe4c2f44
Loading
Loading
Loading
Loading
+0 −6
Original line number Diff line number Diff line
@@ -8038,12 +8038,6 @@
    githubId = 222664;
    name = "Matthew Leach";
  };
  hexchen = {
    email = "nix@lilwit.ch";
    github = "hexchen";
    githubId = 41522204;
    name = "hexchen";
  };
  hexclover = {
    email = "hexclover@outlook.com";
    github = "hexclover";
+0 −16
Original line number Diff line number Diff line
{ config, lib, pkgs, ... }:

let
  cfg = config.hardware.decklink;
  kernelPackages = config.boot.kernelPackages;
in
{
  options.hardware.decklink.enable = lib.mkEnableOption "hardware support for the Blackmagic Design Decklink audio/video interfaces";

  config = lib.mkIf cfg.enable {
    boot.kernelModules = [ "blackmagic" "blackmagic-io" "snd_blackmagic-io" ];
    boot.extraModulePackages = [ kernelPackages.decklink ];
    systemd.packages = [ pkgs.blackmagic-desktop-video ];
    systemd.services.DesktopVideoHelper.wantedBy = [ "multi-user.target" ];
  };
}
+0 −1
Original line number Diff line number Diff line
@@ -59,7 +59,6 @@
  ./hardware/cpu/intel-microcode.nix
  ./hardware/cpu/intel-sgx.nix
  ./hardware/cpu/x86-msr.nix
  ./hardware/decklink.nix
  ./hardware/device-tree.nix
  ./hardware/digitalbitbox.nix
  ./hardware/flipperzero.nix
+1 −1
Original line number Diff line number Diff line
@@ -75,7 +75,7 @@ stdenv.mkDerivation rec {
    homepage = "https://alfaview.com";
    sourceProvenance = with sourceTypes; [ binaryNativeCode ];
    license = licenses.unfree;
    maintainers = with maintainers; [ hexchen ];
    maintainers = with maintainers; [ ];
    mainProgram = "alfaview";
    platforms = [ "x86_64-linux" ];
  };
+0 −4
Original line number Diff line number Diff line
@@ -48,8 +48,6 @@
, nlohmann_json
, websocketpp
, asio
, decklinkSupport ? false
, blackmagic-desktop-video
, libdatachannel
, libvpl
, qrcodegencpp
@@ -167,8 +165,6 @@ stdenv.mkDerivation (finalAttrs: {
      xorg.libX11
      libvlc
      libGL
    ] ++ optionals decklinkSupport [
      blackmagic-desktop-video
    ];
  in ''
    # Remove libcef before patchelf, otherwise it will fail
Loading