~ruther/nix-fpga

ref: 9c69358f0f86b89e5cb4e5132b221538d738baae nix-fpga/pkgs/xilinx/ise/fw.nix -rw-r--r-- 276 bytes
9c69358f — Rutherther fix: ise udev 1 year, 19 days 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/
  '';
}
Do not follow this link