2015-12-29 16:29:44 +00:00
|
|
|
{ stdenv, fetchFromGitHub, python3, libftdi }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "icestorm-${version}";
|
2017-12-07 04:07:14 +00:00
|
|
|
version = "2017.12.06";
|
2015-12-29 16:29:44 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-11-05 17:27:24 +00:00
|
|
|
owner = "cliffordwolf";
|
|
|
|
repo = "icestorm";
|
2017-12-07 04:07:14 +00:00
|
|
|
rev = "14b44ca866665352e7146778bb932e45b5fdedbd";
|
|
|
|
sha256 = "18qy7gylnydgzmqry1b4r0ilm6lkjdcyn0wj03syxdig9dbjiacm";
|
2015-12-29 16:29:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ python3 libftdi ];
|
|
|
|
preBuild = ''
|
2016-05-21 20:22:17 +00:00
|
|
|
makeFlags="PREFIX=$out $makeFlags"
|
2015-12-29 16:29:44 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Documentation and tools for Lattice iCE40 FPGAs";
|
|
|
|
longDescription = ''
|
|
|
|
Project IceStorm aims at reverse engineering and
|
|
|
|
documenting the bitstream format of Lattice iCE40
|
|
|
|
FPGAs and providing simple tools for analyzing and
|
|
|
|
creating bitstream files.
|
|
|
|
'';
|
|
|
|
homepage = http://www.clifford.at/icestorm/;
|
|
|
|
license = stdenv.lib.licenses.isc;
|
2017-10-16 07:24:02 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ shell thoughtpolice ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2015-12-29 16:29:44 +00:00
|
|
|
};
|
|
|
|
}
|