~ruther/nix-fpga

a2d04c319b5a80372e08eae6d9ea2740cf61bba1 — Rutherther 1 year, 3 months ago ac8eb23
feat: add Lattice Diamond shell
1 files changed, 21 insertions(+), 1 deletions(-)

M flake.nix
M flake.nix => flake.nix +21 -1
@@ 58,7 58,7 @@
        libusb-compat-0_1
        libuuid
        motif
        motif3-compat
        # motif3-compat
        xorg.libXcursor
        xorg.libXft
        xorg.libXmu


@@ 69,6 69,17 @@
        xorg.libICE
      ];

      diamondTargetPkgs = pkgs: with pkgs; [
        fontconfig
        libgcc
        glibc
        stdenv.cc.cc.lib
        xorg.libXext
        xorg.libXft
        xorg.libX11
        xorg.libXrender
      ];

      quartusTargetPkgs = pkgs: with pkgs; [
        stdenv.cc.cc.lib
        zlib


@@ 100,6 111,15 @@

    in {
      packages.${system} = {
        diamond-shell = pkgs.buildFHSEnv {
          multiPkgs = diamondTargetPkgs;
          name = "diamond-shell";
          multiArch = true;
          runScript = pkgs.writeScript "quartus-shell" ''
            export LD_LIBRARY_PATH=/lib:$LD_LIBRARY_PATH
            exec bash
          '';
        };
        quartus-shell = pkgs.buildFHSEnv {
          targetPkgs = quartusTargetPkgs;
          name = "quartus-shell";

Do not follow this link