circt: 1.138.0 -> 1.139.0 (#479911)

This commit is contained in:
Peder Bergebakken Sundt
2026-01-24 19:05:54 +00:00
committed by GitHub
2 changed files with 3 additions and 2 deletions
+1
View File
@@ -94,6 +94,7 @@ stdenv.mkDerivation {
for file in "$out"/bin/* "$lib"/lib/*.dylib; do
if [ -L "$file" ]; then continue; fi
if [[ "$file" == *.py ]]; then continue; fi
echo "$file: fixing dylib references"
# note that -id does nothing on binaries
install_name_tool -id "$file" "''${flags[@]}" "$file"
+2 -2
View File
@@ -27,12 +27,12 @@ let
in
stdenv.mkDerivation rec {
pname = "circt";
version = "1.138.0";
version = "1.139.0";
src = fetchFromGitHub {
owner = "llvm";
repo = "circt";
rev = "firtool-${version}";
hash = "sha256-yx6sk6FO7MHNuRFBMhOXTSjtDQ0B6XyhGHb4uHSXx/8=";
hash = "sha256-Yj9BqmmotIaTUHIUslaOmRXYC4ujQ9GNjEmaAfLgLgU=";
fetchSubmodules = true;
};