Commit 99476c1e authored by Bjørn Forsman's avatar Bjørn Forsman
Browse files

quartus-prime-lite: use runtimeShell in wrappers

stdenv.shell is a shell for building, runtimeShell is for running, so
the latter should be used in wrappers. (The distinction only matters
when cross-compiling.)
parent 215bb709
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
{ stdenv, lib, buildFHSEnv, callPackage, makeDesktopItem, writeScript
{ lib, buildFHSEnv, callPackage, makeDesktopItem, writeScript, runtimeShell
, runCommand, quartus-prime-lite
, supportedDevices ? [ "Arria II" "Cyclone V" "Cyclone IV" "Cyclone 10 LP" "MAX II/V" "MAX 10 FPGA" ]
, unwrapped ? callPackage ./quartus.nix { inherit supportedDevices; }
@@ -77,7 +77,7 @@ in buildFHSEnv rec {
        wrapped="$out/$relname"
        progs_wrapped+=("$wrapped")
        mkdir -p "$(dirname "$wrapped")"
        echo "#!${stdenv.shell}" >> "$wrapped"
        echo "#!${runtimeShell}" >> "$wrapped"
        case "$relname" in
            modelsim_ase/*)
                echo "export NIXPKGS_IS_MODELSIM_WRAPPER=1" >> "$wrapped"