1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-20 21:17:46 +00:00
nixpkgs/pkgs/development/tools/icestorm/default.nix

32 lines
990 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.14";
2015-12-29 16:29:44 +00:00
src = fetchFromGitHub {
owner = "cliffordwolf";
repo = "icestorm";
rev = "edbf5fce90ff0e71922a54241a1aec914cc3e230";
sha256 = "01d6xv5c4x8w8lamc8n3vnqsyn7ykhh1ws7k96d6ij5fs52k94xb";
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
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
};
}