trellis: Added installCheckPhase that ensures database is available and updated maintainers

Changed files
+7 -1
pkgs
development
embedded
fpga
trellis
+7 -1
pkgs/development/embedded/fpga/trellis/default.nix
···
cd libtrellis
'';
+
doInstallCheck = true;
+
+
installCheckPhase = ''
+
$out/bin/ecppack $out/share/trellis/misc/basecfgs/empty_lfe5u-85f.config /tmp/test.bin
+
'';
+
meta = with lib; {
description = "Documentation and bitstream tools for Lattice ECP5 FPGAs";
longDescription = ''
···
'';
homepage = "https://github.com/YosysHQ/prjtrellis";
license = licenses.isc;
-
maintainers = with maintainers; [ q3k thoughtpolice emily ];
+
maintainers = with maintainers; [ q3k thoughtpolice emily rowanG077 ];
platforms = platforms.all;
};
}