~ruther/nix-fpga

ref: a9e4e49ebb7a14bc5d564f96c181d7d01a00a950 nix-fpga/pkgs/xilinx/ise/fw.nix -rw-r--r-- 200 bytes
a9e4e49e — Rutherther feat: add usb-driver to ISE 1 year, 19 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
{ pkgs, ... }:

pkgs.stdenv.mkDerivation {
  name = "xilinx-jtag-fw";
  phases = ["unpackPhase" "installPhase"];
  src = ./fw;
  installPhase = ''
    mkdir -p $out/share
    cp * $out/share/
  '';
}
Do not follow this link