Merge pull request #263707 from hzeller/20231026-update-verible

verible: 0.0.3410 -> 0.0.3428
This commit is contained in:
Mario Rodas 2023-10-27 09:08:06 -05:00 committed by GitHub
commit 7f7c22b347
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,17 +17,17 @@ buildBazelPackage rec {
# These environment variables are read in bazel/build-version.py to create
# a build string shown in the tools --version output.
# If env variables not set, it would attempt to extract it from .git/.
GIT_DATE = "2023-08-29";
GIT_VERSION = "v0.0-3410-g398a8505";
GIT_DATE = "2023-10-26";
GIT_VERSION = "v0.0-3428-gcfcbb82b";
# Derive nix package version from GIT_VERSION: "v1.2-345-abcde" -> "1.2.345"
version = builtins.concatStringsSep "." (lib.take 3 (lib.drop 1 (builtins.splitVersion GIT_VERSION)));
src = fetchFromGitHub {
owner = "chipsalliance";
repo = "verible";
rev = "${GIT_VERSION}";
sha256 = "sha256-qi//Dssgg5ITrL5jCpZXpSrhSm2xCqe53D9ctK7SQoU=";
repo = "verible";
rev = "${GIT_VERSION}";
hash = "sha256-snWhOuGyAdtdJDMttcbEjlkwPUO1mdR9vuro0tZt+Z8=";
};
patches = [