yosys: 2018.03.21 -> 2018.05.03

ABC has now moved to GitHub, so we can eliminate the usage of
fetchFromBitbucket now, too.

Signed-off-by: Austin Seipp <aseipp@pobox.com>
This commit is contained in:
Austin Seipp 2018-05-03 20:05:41 -05:00
parent 922e78896c
commit f17f686684

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, fetchFromBitbucket { stdenv, fetchFromGitHub
, pkgconfig, tcl, readline, libffi, python3, bison, flex , pkgconfig, tcl, readline, libffi, python3, bison, flex
}: }:
@ -6,25 +6,25 @@ with builtins;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "yosys-${version}"; name = "yosys-${version}";
version = "2018.03.21"; version = "2018.05.03";
srcs = [ srcs = [
(fetchFromGitHub { (fetchFromGitHub {
owner = "yosyshq"; owner = "yosyshq";
repo = "yosys"; repo = "yosys";
rev = "3f0070247590458c5ed28c5a7abfc3b9d1ec138b"; rev = "a572b495387743a58111e7264917a497faa17ebf";
sha256 = "0rsnjk25asg7dkxcmim464rmxgvm7x7njmcp5nyl8y4iwn8i9p8v"; sha256 = "0q4xh4sy3n83c8il8lygzv0i6ca4qw36i2k6qz6giw0wd2pkibkb";
name = "yosys"; name = "yosys";
}) })
# NOTE: the version of abc used here is synchronized with # NOTE: the version of abc used here is synchronized with
# the one in the yosys Makefile of the version above; # the one in the yosys Makefile of the version above;
# keep them the same for quality purposes. # keep them the same for quality purposes.
(fetchFromBitbucket { (fetchFromGitHub {
owner = "alanmi"; owner = "berkeley-abc";
repo = "abc"; repo = "abc";
rev = "6e3c24b3308a"; rev = "f23ea8e33f6d5cc54f58bec6d9200483e5d8c704";
sha256 = "1i4wv0si4fb6dpv2yrpkp588mdlfrnx2s02q2fgra5apdm54c53w"; sha256 = "1xwmq3k5hfavdrs7zbqjxh35kr2pis4i6hhzrq7qzyzs0az0hls9";
name = "yosys-abc"; name = "yosys-abc";
}) })
]; ];