mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
symbiyosys: add yices dependency
Symbioyosys requires at least smt solver backend to work out of the box.
This commit is contained in:
parent
785d5c6f79
commit
9c7cd63b3d
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchFromGitHub, yosys, bash, python3 }:
|
||||
{ stdenv, fetchFromGitHub, yosys, bash, python3, yices }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "symbiyosys";
|
||||
@ -13,6 +13,8 @@ stdenv.mkDerivation {
|
||||
|
||||
buildInputs = [ python3 yosys ];
|
||||
|
||||
propagatedBuildInputs = [ yices ];
|
||||
|
||||
buildPhase = "true";
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin $out/share/yosys/python3
|
||||
|
Loading…
Reference in New Issue
Block a user