We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 9857545 commit fa8f4b1Copy full SHA for fa8f4b1
pkgs/development/tools/icestorm/default.nix
@@ -15,6 +15,13 @@ stdenv.mkDerivation rec {
15
buildInputs = [ python3 libftdi ];
16
makeFlags = [ "PREFIX=$(out)" ];
17
18
+ # fix icebox_vlog chipdb path. icestorm issue:
19
+ # https://github.com/cliffordwolf/icestorm/issues/125
20
+ patchPhase = ''
21
+ substituteInPlace ./icebox/icebox_vlog.py \
22
+ --replace /usr/local/share "$out/share"
23
+ '';
24
+
25
meta = {
26
description = "Documentation and tools for Lattice iCE40 FPGAs";
27
longDescription = ''
0 commit comments