2015-12-29 16:30:45 +00:00
|
|
|
{ stdenv, fetchFromGitHub, icestorm }:
|
|
|
|
|
2018-02-14 06:15:34 +00:00
|
|
|
with builtins;
|
|
|
|
|
2015-12-29 16:30:45 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "arachne-pnr-${version}";
|
2018-02-14 06:15:34 +00:00
|
|
|
version = "2018.02.14";
|
2015-12-29 16:30:45 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-11-05 17:28:41 +00:00
|
|
|
owner = "cseed";
|
|
|
|
repo = "arachne-pnr";
|
2018-02-14 06:15:34 +00:00
|
|
|
rev = "b54675413f9aac1d9a1fb0a8e9354bec2a2a8f3c";
|
|
|
|
sha256 = "06slsb239qk1r2g96n1g37yp8314cy7yi4g1yf86fr87fr11ml8l";
|
2015-12-29 16:30:45 +00:00
|
|
|
};
|
|
|
|
|
2017-10-17 12:11:00 +01:00
|
|
|
enableParallelBuilding = true;
|
2017-10-16 08:29:21 +01:00
|
|
|
makeFlags =
|
2018-02-14 06:15:34 +00:00
|
|
|
[ "PREFIX=$(out)"
|
|
|
|
"ICEBOX=${icestorm}/share/icebox"
|
2017-10-16 08:29:21 +01:00
|
|
|
];
|
2015-12-29 16:30:45 +00:00
|
|
|
|
2018-02-14 06:15:34 +00:00
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace ./Makefile \
|
|
|
|
--replace 'echo UNKNOWN' 'echo ${substring 0 10 src.rev}'
|
|
|
|
'';
|
|
|
|
|
2015-12-29 16:30:45 +00:00
|
|
|
meta = {
|
|
|
|
description = "Place and route tool for FPGAs";
|
|
|
|
longDescription = ''
|
|
|
|
Arachne-pnr implements the place and route step of
|
|
|
|
the hardware compilation process for FPGAs. It
|
|
|
|
accepts as input a technology-mapped netlist in BLIF
|
|
|
|
format, as output by the Yosys [0] synthesis suite
|
|
|
|
for example. It currently targets the Lattice
|
|
|
|
Semiconductor iCE40 family of FPGAs [1]. Its output
|
|
|
|
is a textual bitstream representation for assembly by
|
|
|
|
the IceStorm [2] icepack command.
|
|
|
|
'';
|
|
|
|
homepage = https://github.com/cseed/arachne-pnr;
|
2017-09-02 10:02:52 +01:00
|
|
|
license = stdenv.lib.licenses.mit;
|
2017-10-16 08:29:21 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ shell thoughtpolice ];
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2015-12-29 16:30:45 +00:00
|
|
|
};
|
|
|
|
}
|