~ruther/nix-fpga

ref: 14b7f973e240c09fc2630466db3f1004201eccc1 nix-fpga/pkgs/xilinx/ise/fw.nix -rw-r--r-- 276 bytes
14b7f973 — Rutherther fix: quartus on wayland 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/
  '';
}