nixpkgs/pkgs/development/tools/icestorm/default.nix

33 lines
962 B
Nix
Raw Normal View History

2015-12-29 16:29:44 +00:00
{ stdenv, fetchFromGitHub, python3, libftdi }:
stdenv.mkDerivation rec {
name = "icestorm-${version}";
version = "2017.10.16";
2015-12-29 16:29:44 +00:00
src = fetchFromGitHub {
owner = "cliffordwolf";
repo = "icestorm";
rev = "d9d2a3dcaa749014f5b9a539768b8368bb529b28";
sha256 = "1a755jnbjq3v7a3l90qjlgihmrpbdfiiabb4g8sw3ay3qmvzwh6b";
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;
maintainers = with stdenv.lib.maintainers; [ shell thoughtpolice ];
platforms = stdenv.lib.platforms.linux;
2015-12-29 16:29:44 +00:00
};
}