Unverified Commit c99f69cc authored by nixpkgs-merge-bot[bot]'s avatar nixpkgs-merge-bot[bot] Committed by GitHub
Browse files

cypress: remove unnecessary deps from buildInputs (#424566)

parents 0f613348 4707054b
Loading
Loading
Loading
Loading
+6 −14
Original line number Diff line number Diff line
@@ -64,20 +64,12 @@ stdenv.mkDerivation rec {
      (buildPackages.wrapGAppsHook3.override { makeWrapper = buildPackages.makeShellWrapper; })
    ];

  buildInputs = lib.optionals stdenv.hostPlatform.isLinux (
    with xorg;
    [
      libXScrnSaver
      libXdamage
      libXtst
      libxshmfence
  buildInputs = lib.optionals stdenv.hostPlatform.isLinux [
    nss
      gtk2
    alsa-lib
    gtk3
    libgbm
    ]
  );
  ];

  runtimeDependencies = lib.optional stdenv.hostPlatform.isLinux (lib.getLib udev);