2015-12-29 17:30:45 +01:00
|
|
|
{ stdenv, fetchFromGitHub, icestorm }:
|
|
|
|
|
2018-02-14 07:15:34 +01:00
|
|
|
with builtins;
|
|
|
|
|
2015-12-29 17:30:45 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "arachne-pnr-${version}";
|
2018-08-09 02:18:53 +02:00
|
|
|
version = "2018.05.13";
|
2015-12-29 17:30:45 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-11-05 18:28:41 +01:00
|
|
|
owner = "cseed";
|
|
|
|
repo = "arachne-pnr";
|
2018-08-09 02:18:53 +02:00
|
|
|
rev = "5d830dd94ad956d17d77168fe7718f22f8b55b33";
|
|
|
|
sha256 = "1i056m5zn21nml65q9x9mgks4ydl8lqya6a4szix01vn3k0g06vn";
|
2015-12-29 17:30:45 +01:00
|
|
|
};
|
|
|
|
|
2017-10-17 13:11:00 +02:00
|
|
|
enableParallelBuilding = true;
|
2017-10-16 09:29:21 +02:00
|
|
|
makeFlags =
|
2018-02-14 07:15:34 +01:00
|
|
|
[ "PREFIX=$(out)"
|
|
|
|
"ICEBOX=${icestorm}/share/icebox"
|
2017-10-16 09:29:21 +02:00
|
|
|
];
|
2015-12-29 17:30:45 +01:00
|
|
|
|
2018-02-14 07:15:34 +01:00
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace ./Makefile \
|
|
|
|
--replace 'echo UNKNOWN' 'echo ${substring 0 10 src.rev}'
|
|
|
|
'';
|
|
|
|
|
2015-12-29 17:30:45 +01: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 11:02:52 +02:00
|
|
|
license = stdenv.lib.licenses.mit;
|
2017-10-16 09:29:21 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ shell thoughtpolice ];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2015-12-29 17:30:45 +01:00
|
|
|
};
|
|
|
|
}
|