nixpkgs/pkgs/development/tools/icestorm/default.nix
Austin Seipp bd59d4c6c9 icestorm: 2018.02.14 -> 2018.03.07
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-03-08 21:23:20 -06:00

39 lines
1.2 KiB
Nix

{ stdenv, fetchFromGitHub, python3, libftdi, pkgconfig }:
stdenv.mkDerivation rec {
name = "icestorm-${version}";
version = "2018.03.07";
src = fetchFromGitHub {
owner = "cliffordwolf";
repo = "icestorm";
rev = "535fde63613eccfeb7e5aad8ff97fbfb652a33b6";
sha256 = "1j2p961k1fsq1xq8fnrv0hpwrb948q12jkb479zmrfk61w6la0df";
};
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;
};
}