88abffb7d2
GitOrigin-RevId: bc9b956714ed6eac5f8888322aac5bc41389defa
55 lines
1.5 KiB
Nix
55 lines
1.5 KiB
Nix
{ lib, stdenv, fetchFromGitHub, python3, boost, cmake }:
|
|
|
|
let
|
|
rev = "03e0070f263fbe31c247de61d259544722786210";
|
|
# git describe --tags
|
|
realVersion = "1.0-532-g${builtins.substring 0 7 rev}";
|
|
in stdenv.mkDerivation rec {
|
|
pname = "trellis";
|
|
version = "2021-09-01";
|
|
|
|
srcs = [
|
|
(fetchFromGitHub {
|
|
owner = "YosysHQ";
|
|
repo = "prjtrellis";
|
|
inherit rev;
|
|
sha256 = "joQMsjVj8d3M3IaqOkfVQ1I5qPDM8HHJiye+Ak8f3dg=";
|
|
name = "trellis";
|
|
})
|
|
|
|
(fetchFromGitHub {
|
|
owner = "YosysHQ";
|
|
repo = "prjtrellis-db";
|
|
rev = "fdf4bf275a7402654bc643db537173e2fbc86103";
|
|
sha256 = "eDq2wU2pnfK9bOkEVZ07NQPv02Dc6iB+p5GTtVBiyQA=";
|
|
name = "trellis-database";
|
|
})
|
|
];
|
|
sourceRoot = "trellis";
|
|
|
|
buildInputs = [ boost ];
|
|
nativeBuildInputs = [ cmake python3 ];
|
|
cmakeFlags = [
|
|
"-DCURRENT_GIT_VERSION=${realVersion}"
|
|
];
|
|
|
|
preConfigure = ''
|
|
rmdir database && ln -sfv ${builtins.elemAt srcs 1} ./database
|
|
|
|
cd libtrellis
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Documentation and bitstream 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/YosysHQ/prjtrellis";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ q3k thoughtpolice emily ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|