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

39 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, python3, libftdi, pkgconfig }:
2015-12-29 16:29:44 +00:00
stdenv.mkDerivation rec {
name = "icestorm-${version}";
version = "2018.03.07";
2015-12-29 16:29:44 +00:00
src = fetchFromGitHub {
owner = "cliffordwolf";
repo = "icestorm";
rev = "535fde63613eccfeb7e5aad8ff97fbfb652a33b6";
sha256 = "1j2p961k1fsq1xq8fnrv0hpwrb948q12jkb479zmrfk61w6la0df";
2015-12-29 16:29:44 +00:00
};
nativeBuildInputs = [ pkgconfig ];
2015-12-29 16:29:44 +00:00
buildInputs = [ python3 libftdi ];
makeFlags = [ "PREFIX=$(out)" ];
2015-12-29 16:29:44 +00:00
# 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"
'';
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
};
}