~ruther/nix-fpga

ref: 0a072151f5c64b3d488b67a3dee3344ce57aa52b nix-fpga/pkgs/xilinx/common.nix -rw-r--r-- 1015 bytes
0a072151 — Rutherther feat: add vitis 5 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
  targetPkgs = pkgs: with pkgs; [
    bash
    gnumake
    coreutils
    stdenv.cc.cc
    ncurses5
    ncurses
    zlib
    xorg.libX11
    xorg.libXrender
    xorg.libxcb
    xorg.libXext
    xorg.libXtst
    xorg.libXi
    freetype
    gtk2
    glib
    libxcrypt-legacy
    gperftools
    glibc.dev
    fontconfig
    liberation_ttf
    lsb-release

    # Xilinx ISE
    glib
    iproute2
    libstdcxx5
    libusb-compat-0_1
    libuuid
    motif
    # motif3-compat
    xorg.libXcursor
    xorg.libXft
    xorg.libXmu
    xorg.libXp
    xorg.libXt
    xorg.libXrandr
    xorg.libSM
    xorg.libICE

    # to compile some xilinx examples
    opencl-clhpp
    ocl-icd
    opencl-headers

    # Vitis
    python3
    swt
    (pkgs.runCommandLocal "swt-4" {} ''
      mkdir -p $out/lib
      ln -s ${swt}/lib/libswt-pi-gtk-4527.so $out/lib/libswt-pi4-gtk.so
    '')
    gtk3
    jdk21
    xorg.xlsclients

    # Debug
    strace

    # "arch" is needed for vitis
    toybox
    unzip
    (lib.hiPrio gcc)
  ];
}
Do not follow this link