trellis: init 2018.08.01 (#44328)

* trellis: init 2018.08.01

* trellis: move boost to buildInputs

* trellis: remove leftover debug clause
This commit is contained in:
Serge Bazanski 2018-08-02 09:18:47 +01:00 committed by xeji
parent af4448ef4d
commit 742a50dafd
3 changed files with 56 additions and 0 deletions

View file

@ -3197,6 +3197,11 @@
email = "patrick.callahan@latitudeengineering.com";
name = "Patrick Callahan";
};
q3k = {
email = "q3k@q3k.org";
github = "q3k";
name = "Serge Bazanski";
};
qknight = {
email = "js@lastlog.de";
github = "qknight";

View file

@ -0,0 +1,49 @@
{ stdenv, fetchFromGitHub, python3, cmake, boost }:
let
trellisdb = fetchFromGitHub {
owner = "SymbiFlow";
repo = "prjtrellis-db";
rev = "06b429ddb7fd8ec1e3f2b35de2e94b4853cf2835";
sha256 = "07bsgw5x3gq0jcn9j4g7q9xvibvz6j2arjnvgyrxnrg30ri9q173";
};
in
stdenv.mkDerivation rec {
name = "trellis-${version}";
version = "2018.08.01";
buildInputs = [
(boost.override { python = python3; enablePython = true; })
];
nativeBuildInputs = [
cmake python3
];
src = fetchFromGitHub {
owner = "SymbiFlow";
repo = "prjtrellis";
rev = "fff9532fe59bf9e38b44f029ce4a06c607a9ee78";
sha256 = "0ycw9fjf6428sf5x8x5szn8fha79610nf7nn8kmibgmz9868yv30";
};
preConfigure = ''
source environment.sh
cp -RT "${trellisdb}" database
cd libtrellis
'';
meta = {
description = "Documentation and tools for Lattice ECP5 FPGAs";
longDescription = ''
Project Trellis documents the Lattice ECP5 architecture
to enable development of open-source tools. Its goal is
to provide sufficient information to develop a free and
open Verilog to bitstream toolchain for these devices.
'';
homepage = https://github.com/SymbiFlow/prjtrellis;
license = stdenv.lib.licenses.isc;
maintainers = with stdenv.lib.maintainers; [ q3k ];
platforms = stdenv.lib.platforms.linux;
};
}

View file

@ -8624,6 +8624,8 @@ with pkgs;
travis = callPackage ../development/tools/misc/travis { };
trellis = callPackage ../development/tools/trellis { };
tweak = callPackage ../applications/editors/tweak { };
uhd = callPackage ../development/tools/misc/uhd { };