Skip to content

Commit

Permalink
nix: build klayout with -with-qtbinding
Browse files Browse the repository at this point in the history
  • Loading branch information
donn committed Dec 18, 2024
1 parent 237bbe3 commit 3af1f86
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
7 changes: 7 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@
## Documentation
-->

# 2.3.1

## Tool Updates

* KLayout now compiled with `-qt-binding`, which increases distribution size but
allows for more features.

# 2.3.0

## Steps
Expand Down
3 changes: 3 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@
(nix-eda.flakesToOverlay [libparse ioplace-parser volare])
(pkgs': pkgs: {
yosys-sby = (pkgs.yosys-sby.override { sha256 = "sha256-Il2pXw2doaoZrVme2p0dSUUa8dCQtJJrmYitn1MkTD4="; });
klayout = (pkgs.klayout.overrideAttrs(old: {
configurePhase = builtins.replaceStrings ["-without-qtbinding"] ["-with-qtbinding"] old.configurePhase;
}));
})
(
pkgs': pkgs: let
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "openlane"
version = "2.3.0"
version = "2.3.1"
description = "An infrastructure for implementing chip design flows"
authors = ["Efabless Corporation and Contributors <[email protected]>"]
readme = "Readme.md"
Expand Down

0 comments on commit 3af1f86

Please sign in to comment.