2015-12-29 17:30:45 +01:00
|
|
|
{ stdenv, fetchFromGitHub, icestorm }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "arachne-pnr-${version}";
|
2018-02-04 18:59:11 +01:00
|
|
|
version = "2018.02.04";
|
2015-12-29 17:30:45 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-11-05 18:28:41 +01:00
|
|
|
owner = "cseed";
|
|
|
|
repo = "arachne-pnr";
|
2018-02-04 18:59:11 +01:00
|
|
|
rev = "c21df0062c6ee13e8c8280cefbb7c017823336c0";
|
|
|
|
sha256 = "1ah1gn07av3ff5lnay4p7dahaacbyj0mfakbx7g5fs3p1m1m8p1k";
|
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 =
|
2017-10-17 13:11:00 +02:00
|
|
|
[ "PREFIX=$(out)" "ICEBOX=${icestorm}/share/icebox"
|
2017-10-16 09:29:21 +02:00
|
|
|
];
|
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
|
|
|
};
|
|
|
|
}
|