Get adder/cmos test working!
This commit is contained in:
parent
e354b3ac4b
commit
c62f95af7c
|
@ -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";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue