verible: 0.0.3956 -> 0.0.4023

Diff:
https://github.com/chipsalliance/verible/compare/v0.0-3956-ge12a194d...v0.0-4023-gc1271a00

+12 -12
+12 -12
pkgs/by-name/ve/verible/package.nix
··· 16 16 registry = fetchFromGitHub { 17 17 owner = "bazelbuild"; 18 18 repo = "bazel-central-registry"; 19 - rev = "bac7a5dc8b5535d7b36d0405f76badfba77c84c2"; 20 - hash = "sha256-TXooqzqfvf1twldfrs0m8QR3AJkUCIyBS36TFTwN4Eg="; 19 + rev = "3f863a3f35f31b61982d813835d8637b3d93d87a"; 20 + hash = "sha256-BsxP3GrS98ubIAkFx/c4pB1i97ZZL2TijS+2ORnooww="; 21 21 }; 22 22 in 23 23 buildBazelPackage rec { ··· 26 26 # These environment variables are read in bazel/build-version.py to create 27 27 # a build string shown in the tools --version output. 28 28 # If env variables not set, it would attempt to extract it from .git/. 29 - GIT_DATE = "2025-03-30"; 30 - GIT_VERSION = "v0.0-3956-ge12a194d"; 29 + GIT_DATE = "2025-08-29"; 30 + GIT_VERSION = "v0.0-4023-gc1271a00"; 31 31 32 32 # Derive nix package version from GIT_VERSION: "v1.2-345-abcde" -> "1.2.345" 33 33 version = builtins.concatStringsSep "." ( ··· 37 37 src = fetchFromGitHub { 38 38 owner = "chipsalliance"; 39 39 repo = "verible"; 40 - rev = "${GIT_VERSION}"; 41 - hash = "sha256-/RZqBNmyBZI6CO2ffS6p8T4wse1MKytNMphXFdkTOWQ="; 40 + tag = GIT_VERSION; 41 + hash = "sha256-N+yjRcVxFI56kP3zq+qFHNXZLTtVnQaVnseZS13YN0s="; 42 42 }; 43 43 44 44 bazel = bazel_7; ··· 51 51 fetchAttrs = { 52 52 hash = 53 53 { 54 - aarch64-linux = "sha256-jgh+wEqZba30MODmgmPoQn1ErNmm40d16jB/kE2jYPg="; 55 - x86_64-linux = "sha256-kiI/LX0l9ERxItsqiAyl+BP3QnLr0Ly2YVb988M4jVs="; 56 - aarch64-darwin = "sha256-bkw4ErWYblzr3lQhoXSBqIBHjXzhZHeTKdT0E/YsiFQ="; 54 + aarch64-linux = "sha256-SUURIZF3mlFRFKpxdHrgYAbJQ4rkkzCeqcC/1vxmreo="; 55 + x86_64-linux = "sha256-p7h2L1aLzmMeWWxXC//Qau8/F4HbnUFY6aV8u7zfjRk="; 56 + aarch64-darwin = "sha256-Zn22un/KaHdTEA/ucaentR7t/krmnZQk3A+jfbPVYnA="; 57 57 } 58 58 .${system} or (throw "No hash for system: ${system}"); 59 59 }; ··· 94 94 ''; 95 95 }; 96 96 97 - meta = with lib; { 97 + meta = { 98 98 description = "Suite of SystemVerilog developer tools. Including a style-linter, indexer, formatter, and language server"; 99 99 homepage = "https://github.com/chipsalliance/verible"; 100 - license = licenses.asl20; 101 - maintainers = with maintainers; [ 100 + license = lib.licenses.asl20; 101 + maintainers = with lib.maintainers; [ 102 102 hzeller 103 103 newam 104 104 ];