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-02-14 06:15:06 +00:00
|
|
|
version = "2018.02.14";
|
2015-12-29 16:29:44 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
2017-11-05 17:27:24 +00:00
|
|
|
owner = "cliffordwolf";
|
|
|
|
repo = "icestorm";
|
2018-02-14 06:15:06 +00:00
|
|
|
rev = "edbf5fce90ff0e71922a54241a1aec914cc3e230";
|
|
|
|
sha256 = "01d6xv5c4x8w8lamc8n3vnqsyn7ykhh1ws7k96d6ij5fs52k94xb";
|
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 ];
|
2018-02-14 06:15:06 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
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
|
|
|
};
|
|
|
|
}
|