yosys: 2019.04.23 -> 2019.08.13

This commit is contained in:
Emily 2019-08-13 16:46:42 -07:00
parent a0824ccff7
commit 830801805d

View File

@ -1,21 +1,21 @@
{ stdenv, fetchFromGitHub { stdenv, fetchFromGitHub
, pkgconfig, bison, flex , pkgconfig, bison, flex
, tcl, readline, libffi, python3 , tcl, readline, libffi, python3
, protobuf , protobuf, zlib
}: }:
with builtins; with builtins;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "yosys-${version}"; pname = "yosys";
version = "2019.04.23"; version = "2019.08.13";
srcs = [ srcs = [
(fetchFromGitHub { (fetchFromGitHub {
owner = "yosyshq"; owner = "yosyshq";
repo = "yosys"; repo = "yosys";
rev = "d9daf09cf3aab202b6da058c5e959f6375a4541e"; rev = "19d6b8846f55b4c7be705619f753bec86deadac8";
sha256 = "0l27r9l3fvkqhmbqqpjz1f3ny4wdh5mdc7jlnbgy6nxx6vqcmkh0"; sha256 = "185sbkxajx3k9j03n0cxq2qvzwfwdbcxp19h8vnk7ghd5y9gp602";
name = "yosys"; name = "yosys";
}) })
@ -25,8 +25,8 @@ stdenv.mkDerivation rec {
(fetchFromGitHub { (fetchFromGitHub {
owner = "berkeley-abc"; owner = "berkeley-abc";
repo = "abc"; repo = "abc";
rev = "3709744c60696c5e3f4cc123939921ce8107fe04"; rev = "5776ad07e7247993976bffed4802a5737c456782";
sha256 = "18a9cjng3qfalq8m9az5ck1y5h4l2pf9ycrvkzs9hn82b1j7vrax"; sha256 = "1la4idmssg44rp6hd63sd5vybvs3vr14yzvwcg03ls37p39cslnl";
name = "yosys-abc"; name = "yosys-abc";
}) })
]; ];
@ -34,7 +34,7 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true; enableParallelBuilding = true;
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig ];
buildInputs = [ tcl readline libffi python3 bison flex protobuf ]; buildInputs = [ tcl readline libffi python3 bison flex protobuf zlib ];
makeFlags = [ "ENABLE_PROTOBUF=1" ]; makeFlags = [ "ENABLE_PROTOBUF=1" ];