nixpkgs/pkgs/development/tools/icestorm/default.nix
2018-08-01 23:20:38 +02:00

39 lines
1.2 KiB
Nix

{ stdenv, fetchFromGitHub, python3, libftdi, pkgconfig }:
stdenv.mkDerivation rec {
name = "icestorm-${version}";
version = "2018.08.01";
src = fetchFromGitHub {
owner = "cliffordwolf";
repo = "icestorm";
rev = "8cac6c584044034210fe0ba1e6b930ff1cc59465";
sha256 = "01cnmk4khbbgzc308qj04sfwg0r8b9nh3s7xjsxdjcb3h1m9w88c";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ python3 libftdi ];
makeFlags = [ "PREFIX=$(out)" ];
# fix icebox_vlog chipdb path. icestorm issue:
# https://github.com/cliffordwolf/icestorm/issues/125
patchPhase = ''
substituteInPlace ./icebox/icebox_vlog.py \
--replace /usr/local/share "$out/share"
'';
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;
};
}