Guest User

Untitled

a guest
Jan 22nd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. # install with nix-env -f fhs.env -i
  2. # sets up an enter-fhs command that works for running fhs dependent binaries
  3.  
  4. with import <nixpkgs> { };
  5.  
  6. buildFHSUserEnv {
  7. name = "enter-fhs";
  8. targetPkgs = pkgs: with pkgs; [
  9. # Xilinx ISE webpack installed with
  10. ncurses5 zlib glib freetype fontconfig strace which
  11. xorg.libX11 xorg.libSM xorg.libICE xorg.libXi xorg.libXrender xorg.libXrandr xorg.libXext
  12. # required to run ISE
  13. libuuid
  14. # required for ISim
  15. gcc
  16. # for Digilent Adept
  17. libusb1
  18. # for stm32
  19. rustup openocd gdb
  20. # for esp8266
  21. arduino
  22. # for intel gpa
  23. dbus
  24. ];
  25. runScript = "$SHELL";
  26. }
Add Comment
Please, Sign In to add comment