Get adder/cmos test working!

This commit is contained in:
Las Safin 2021-09-03 13:49:43 +00:00
parent e354b3ac4b
commit c62f95af7c
No known key found for this signature in database
GPG Key ID: E7FA928911B61ED6
1 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,7 @@
{ alliance-src, ... }: { alliance-src, ... }:
{ stdenv, coriolis-unicorn, coriolis-cumulus, python2Packages, alliance, yosys }: { stdenv, coriolis-combined, coriolis-unicorn, coriolis-cumulus
, python2Packages, alliance, yosys }:
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "alliance-check-toolkit"; pname = "alliance-check-toolkit";
@ -11,7 +12,7 @@ stdenv.mkDerivation {
YOSYS_TOP = "${yosys}"; YOSYS_TOP = "${yosys}";
ALLIANCE_TOP = "${alliance}"; ALLIANCE_TOP = "${alliance}";
CORIOLIS_TOP = "${coriolis-unicorn}"; CORIOLIS_TOP = "${coriolis-combined}";
# The user configuration for verhaegs is empty, # The user configuration for verhaegs is empty,
# which is why we use it. # which is why we use it.
USER = "verhaegs"; USER = "verhaegs";
@ -25,6 +26,6 @@ stdenv.mkDerivation {
echo 'doing make lvx' echo 'doing make lvx'
make lvx make lvx
''; '';
installPhase = "true"; installPhase = "touch $out";
fixupPhase = "true"; fixupPhase = "true";
} }