~ruther/nix-fpga

ref: 14b7f973e240c09fc2630466db3f1004201eccc1 nix-fpga/pkgs/intel/quartus/fhs.nix -rw-r--r-- 1.0 KiB
14b7f973 — Rutherther fix: quartus on wayland 8 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{pkgs, lib, myLib, requireInstallDir ? false }:

pkgs.buildFHSEnv {
  targetPkgs =
  pkgs: with pkgs; [
    stdenv.cc.cc.lib
    zlib
    glib
    libxcrypt-legacy
    libpng12
    freetype
    fontconfig.lib
    xorg.libSM
    xorg.libICE
    xorg.libXrender
    xorg.libXext
    xorg.libX11
    xorg.libXtst
    xorg.libXi
    xorg.libXft
    xorg.xcbutil
    xorg.libxcb.out
    xorg.xcbutilrenderutil.out
    xorg.libXau
    xorg.libXdmcp
    qt6.qtwayland
    libsForQt5.qt5.qtwayland
    gtk2
    libelf
    expat
    dbus.lib
    brotli.lib
    libpng
    bzip2.out
  ];

  name = "quartus";

  runScript = pkgs.writeScript "questasim-env" ''
    #!/usr/bin/env bash
    ${myLib.runScriptPrefix "quartus" requireInstallDir}
    if [[ ! -z $INSTALL_DIR ]]; then
      export PATH=$INSTALL_DIR/quartus/bin:$PATH
    fi
    export LD_LIBRARY_PATH=/lib:$LD_LIBRARY_PATH
    unset QT_QPA_PLATFORM # tends to crash on wayland with QT_QPA_PLATFORM=wayland, remove that variable, if set
    exec "$@"
  '';

  meta.mainProgram = "quartus";
}
Do not follow this link