lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

icestorm: init at 2015.12.29

+33
+31
pkgs/development/tools/icestorm/default.nix
··· 1 + { stdenv, fetchFromGitHub, python3, libftdi }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "icestorm-${version}"; 5 + version = "2015.12.29"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "cliffordwolf"; 9 + repo = "icestorm"; 10 + rev = "7852514c2cde208da87b62777b2c5e482092f50d"; 11 + sha256 = "1ya1nk5h28hjdmd8jdrlfiayr2434rnvi133gs1p0ay21qb3iwfz"; 12 + }; 13 + 14 + buildInputs = [ python3 libftdi ]; 15 + preBuild = '' 16 + makeFlags="DESTDIR=$out $makeFlags" 17 + ''; 18 + 19 + meta = { 20 + description = "Documentation and tools for Lattice iCE40 FPGAs"; 21 + longDescription = '' 22 + Project IceStorm aims at reverse engineering and 23 + documenting the bitstream format of Lattice iCE40 24 + FPGAs and providing simple tools for analyzing and 25 + creating bitstream files. 26 + ''; 27 + homepage = http://www.clifford.at/icestorm/; 28 + license = stdenv.lib.licenses.isc; 29 + maintainers = [ stdenv.lib.maintainers.shell ]; 30 + }; 31 + }
+2
pkgs/top-level/all-packages.nix
··· 5755 5755 5756 5756 hyenae = callPackage ../tools/networking/hyenae { }; 5757 5757 5758 + icestorm = callPackage ../development/tools/icestorm { }; 5759 + 5758 5760 icmake = callPackage ../development/tools/build-managers/icmake { }; 5759 5761 5760 5762 iconnamingutils = callPackage ../development/tools/misc/icon-naming-utils {