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

34 lines
1,016 B
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.02.04";
2015-12-29 16:29:44 +00:00
src = fetchFromGitHub {
owner = "cliffordwolf";
repo = "icestorm";
rev = "722790ad3cdb497e1b13cd1b4368d8380371eb37";
sha256 = "0l04c6dshhhdcgqg1bdlw215wbn52fsg2fm2cvavhvf64c18lwd1";
2015-12-29 16:29:44 +00:00
};
nativeBuildInputs = [ pkgconfig ];
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
};
}