1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/tools/icestorm/default.nix

33 lines
942 B
Nix
Raw Normal View History

2015-12-29 16:29:44 +00:00
{ stdenv, fetchFromGitHub, python3, libftdi }:
stdenv.mkDerivation rec {
name = "icestorm-${version}";
version = "2016.11.01";
2015-12-29 16:29:44 +00:00
src = fetchFromGitHub {
owner = "cliffordwolf";
repo = "icestorm";
rev = "01b9822638d60e048c295d005257daa4c147761f";
sha256 = "088wnf55m9ii98w8j7qc99spq95y19xw4fnnw9mxi7cfkxxggsls";
2015-12-29 16:29:44 +00:00
};
buildInputs = [ python3 libftdi ];
preBuild = ''
2016-05-21 21:22:17 +01: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 = [ stdenv.lib.maintainers.shell ];
platforms = stdenv.lib.platforms.linux;
2015-12-29 16:29:44 +00:00
};
}