~ruther/nix-fpga

ref: 63d383f79633efa8111c6032b2938f2417af66b9 nix-fpga/pkgs/xilinx/ise/fw.nix -rw-r--r-- 276 bytes
63d383f7 — Rutherther fix: ncurses library is inside of ncurses.out 1 year, 5 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs, ... }:

pkgs.stdenv.mkDerivation {
  name = "xilinx-jtag-fw";
  phases = ["unpackPhase" "installPhase"];
  src = ./fw;
  installPhase = ''
    mkdir -p $out/share $out/etc/hotplug/usb/xusbdfwu.fw
    cp * $out/share/
    cp * $out/etc/hotplug/usb/xusbdfwu.fw/
  '';
}