Skip to content

Commit fa8f4b1

Browse files
committedFeb 14, 2018
icestorm: fix chipdb location for icebox_vlog
Signed-off-by: Austin Seipp <aseipp@pobox.com>
1 parent 9857545 commit fa8f4b1

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
 

‎pkgs/development/tools/icestorm/default.nix

+7
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@ stdenv.mkDerivation rec {
1515
buildInputs = [ python3 libftdi ];
1616
makeFlags = [ "PREFIX=$(out)" ];
1717

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+
1825
meta = {
1926
description = "Documentation and tools for Lattice iCE40 FPGAs";
2027
longDescription = ''

0 commit comments

Comments
 (0)
Please sign in to comment.