mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 19:03:28 +00:00
169dc22b96
Instead, merge the user provided LD_PRELOAD environment variable with the hardcoded libudev.so.1 entry. User provided libs are loaded first.
99 lines
3.3 KiB
Nix
99 lines
3.3 KiB
Nix
{ stdenv, lib, buildFHSEnvChroot, callPackage, makeDesktopItem, writeScript
|
|
, supportedDevices ? [ "Arria II" "Cyclone V" "Cyclone IV" "Cyclone 10 LP" "MAX II/V" "MAX 10 FPGA" ]
|
|
, unwrapped ? callPackage ./quartus.nix { inherit supportedDevices; }
|
|
}:
|
|
|
|
let
|
|
desktopItem = makeDesktopItem {
|
|
name = "quartus-prime-lite";
|
|
exec = "quartus";
|
|
icon = "quartus";
|
|
desktopName = "Quartus";
|
|
genericName = "Quartus Prime";
|
|
categories = [ "Development" ];
|
|
};
|
|
# I think modelsim_ase/linux/vlm checksums itself, so use FHSUserEnv instead of `patchelf`
|
|
in buildFHSEnvChroot rec {
|
|
name = "quartus-prime-lite"; # wrapped
|
|
|
|
targetPkgs = pkgs: with pkgs; [
|
|
(runCommand "ld-lsb-compat" {} ''
|
|
mkdir -p "$out/lib"
|
|
ln -sr "${glibc}/lib/ld-linux-x86-64.so.2" "$out/lib/ld-lsb-x86-64.so.3"
|
|
ln -sr "${pkgsi686Linux.glibc}/lib/ld-linux.so.2" "$out/lib/ld-lsb.so.3"
|
|
'')
|
|
# quartus requirements
|
|
glib
|
|
xorg.libICE
|
|
xorg.libSM
|
|
zlib
|
|
# qsys requirements
|
|
xorg.libXtst
|
|
xorg.libXi
|
|
];
|
|
multiPkgs = pkgs: with pkgs; let
|
|
# This seems ugly - can we override `libpng = libpng12` for all `pkgs`?
|
|
freetype = pkgs.freetype.override { libpng = libpng12; };
|
|
fontconfig = pkgs.fontconfig.override { inherit freetype; };
|
|
libXft = pkgs.xorg.libXft.override { inherit freetype fontconfig; };
|
|
in [
|
|
# modelsim requirements
|
|
libxml2
|
|
ncurses5
|
|
unixODBC
|
|
libXft
|
|
# common requirements
|
|
freetype
|
|
fontconfig
|
|
xorg.libX11
|
|
xorg.libXext
|
|
xorg.libXrender
|
|
libudev0-shim
|
|
libxcrypt-legacy
|
|
];
|
|
|
|
passthru = { inherit unwrapped; };
|
|
|
|
extraInstallCommands = ''
|
|
mkdir -p $out/share/applications $out/share/icons/128x128
|
|
ln -s ${desktopItem}/share/applications/* $out/share/applications
|
|
ln -s ${unwrapped}/licenses/images/dc_quartus_panel_logo.png $out/share/icons/128x128/quartus.png
|
|
|
|
progs_to_wrap=(
|
|
"${unwrapped}"/quartus/bin/*
|
|
"${unwrapped}"/quartus/sopc_builder/bin/qsys-{generate,edit,script}
|
|
# Should we install all executables?
|
|
"${unwrapped}"/modelsim_ase/bin/{vsim,vlog,vlib,vcom,vdel,vmap}
|
|
"${unwrapped}"/modelsim_ase/linuxaloem/lmutil
|
|
)
|
|
|
|
wrapper=$out/bin/${name}
|
|
progs_wrapped=()
|
|
for prog in ''${progs_to_wrap[@]}; do
|
|
relname="''${prog#"${unwrapped}/"}"
|
|
wrapped="$out/$relname"
|
|
progs_wrapped+=("$wrapped")
|
|
mkdir -p "$(dirname "$wrapped")"
|
|
echo "#!${stdenv.shell}" >> "$wrapped"
|
|
echo "$wrapper $prog \"\$@\"" >> "$wrapped"
|
|
done
|
|
|
|
cd $out
|
|
chmod +x ''${progs_wrapped[@]}
|
|
# link into $out/bin so executables become available on $PATH
|
|
ln --symbolic --relative --target-directory ./bin ''${progs_wrapped[@]}
|
|
'';
|
|
|
|
# LD_PRELOAD fixes issues in the licensing system that cause memory corruption and crashes when
|
|
# starting most operations in many containerized environments, including WSL2, Docker, and LXC
|
|
# (a similiar fix involving LD_PRELOADing tcmalloc did not solve the issue in my situation)
|
|
# we use the name so that quartus can load the 64 bit verson and modelsim can load the 32 bit version
|
|
# https://community.intel.com/t5/Intel-FPGA-Software-Installation/Running-Quartus-Prime-Standard-on-WSL-crashes-in-libudev-so/m-p/1189032
|
|
profile = ''
|
|
export LD_PRELOAD=''${LD_PRELOAD:+$LD_PRELOAD:}libudev.so.0
|
|
'';
|
|
|
|
# Run the wrappers directly, instead of going via bash.
|
|
runScript = "";
|
|
}
|