Commit Graph

5 Commits

Author SHA1 Message Date
Thomas Watson
c73d086a49 quartus-prime-lite: cleanup
Fixes a few issues, listed below.

Intel's website redesign broke the requireFile link, but fortunately
files can now be downloaded without a user account. The derivation
is modified to remove requireFile and download directly instead.

Issues with quoting command line arguments are corrected.

An issue causing crashes when running in containers is worked around
with LD_PRELOAD.

The meta.platforms attribute is corrected to the supported processors.
2022-08-31 14:55:48 -05:00
Robert Scott
466c2e342a treewide/applications: add sourceType binaryNativeCode for many packages 2022-06-23 18:38:19 +01:00
Kai Wohlfahrt
778c776ab6
quartus: formatting fixes from review
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2021-05-30 11:07:31 +01:00
Kai Wohlfahrt
b1c5fd83bb quartus: 20.1 -> 20.1.1 2021-05-29 23:15:05 +01:00
Kai Wohlfahrt
788c34d9b0 quartus: split out unwrapped package
This allows customizing the install process for the unwrapped process,
as proposed in #123469, without introducing top-level support for
untested modifications.

The PR could then be straightforwardly implemented as an overlay, that
does:

  quartus-prime-lite = super.quartus-prime-lite.override {
    unwrapped = quartus-prime-lite.unwrapped.overrideAttrs (o: {
      buildCommand = o.buildCommand + ''
        rm -r $out/nios2eds/bin/gnu
        find $out/modelsim_ase/altera/{verilog,vhdl}/* ! -name src ! -path '*twentynm*' -delete
      '';
    });
  };
2021-05-29 22:16:50 +01:00