~ruther/nix-fpga

ref: 360b4f46563b10bbb24d886af4f5f0c33e0f0bed nix-fpga/pkgs/xilinx/ise/fw.nix -rw-r--r-- 200 bytes
360b4f46 — Rutherther docs: add information about other programs in main package binary folder 1 year, 9 months 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/
  '';
}