nixpkgs/pkgs/development/tools/icestorm/default.nix
Austin Seipp 8f5c258cc1 icestorm: 2018.03.21 -> 2018.05.03
Signed-off-by: Austin Seipp <aseipp@pobox.com>
2018-05-03 20:04:56 -05:00

39 lines
1.2 KiB
Nix

{ stdenv, fetchFromGitHub, python3, libftdi, pkgconfig }:
stdenv.mkDerivation rec {
name = "icestorm-${version}";
version = "2018.05.03";
src = fetchFromGitHub {
owner = "cliffordwolf";
repo = "icestorm";
rev = "237280ce44f72c7b2e1ca671d5113dba34cc4fca";
sha256 = "0r9xh024snaf1g2r5k524yl6lvf5rkfhqwjzcixh1m12012i5hrh";
};
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;
};
}