2017-12-07 04:16:07 +00:00
|
|
|
{ stdenv, fetchFromGitHub, python3, libftdi, pkgconfig }:
|
2015-12-29 16:29:44 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "icestorm-${version}";
|
2018-01-10 19:31:56 +00:00
|
|
|
version = "2018.01.10";
|
2015-12-29 16:29:44 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-11-05 17:27:24 +00:00
|
|
|
owner = "cliffordwolf";
|
|
|
|
repo = "icestorm";
|
2018-01-10 19:31:56 +00:00
|
|
|
rev = "bca8c3c88f5707213a6cc55ec7b06b576ab98809";
|
|
|
|
sha256 = "00g1xd70dlgvyfyk5ivj71dpk0vzx3xka60f6x3hm4frl9ahyhj7";
|
2015-12-29 16:29:44 +00:00
|
|
|
};
|
|
|
|
|
2017-12-07 04:16:07 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2015-12-29 16:29:44 +00:00
|
|
|
buildInputs = [ python3 libftdi ];
|
|
|
|
preBuild = ''
|
2016-05-21 21:22:17 +01: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 08:24:02 +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:29:44 +00:00
|
|
|
};
|
|
|
|
}
|