Merge pull request #12 from logos-blockchain/circuits-fix

fix(circuits): Circuits fix
This commit is contained in:
Daniel Sanchez 2026-02-26 13:31:39 +00:00 committed by GitHub
commit a5658e9e37
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 10 additions and 10 deletions

12
flake.lock generated
View File

@ -68,11 +68,11 @@
]
},
"locked": {
"lastModified": 1772023717,
"narHash": "sha256-aFzRBR3CVosBOqQeYCB1tz7Vp/rkDYLtAvqgQjTdE4c=",
"lastModified": 1772111643,
"narHash": "sha256-5avo4LCEpQrA076qTUXPJXPhwOZ0Ma96p04qT1vSve0=",
"owner": "logos-blockchain",
"repo": "logos-blockchain-module",
"rev": "1320bd760ffe9c3cc2d8c11f76d8296b01faeef9",
"rev": "6379fceb6dbd3c27c22468f412c446453733e96d",
"type": "github"
},
"original": {
@ -594,11 +594,11 @@
]
},
"locked": {
"lastModified": 1772034067,
"narHash": "sha256-gHRlOZoBvNne7A8gP7+YH8WNas50mIgJGP/ZZzhCyLo=",
"lastModified": 1772100797,
"narHash": "sha256-IGf1mWOiQZfBWxkIlwUPGogSDHuKyBEBUgUNx0dYFEs=",
"owner": "logos-co",
"repo": "logos-design-system",
"rev": "b3d5bda6765dace3a5aeefe9da74d8298490681b",
"rev": "e0101f17e38eebee5a551651206d371e5b0bc647",
"type": "github"
},
"original": {

View File

@ -174,8 +174,8 @@ pkgs.stdenv.mkDerivation rec {
fi
# Copy circuits from blockchain module to lib (needed at runtime)
if [ -d "${logosBlockchainModule}/lib/circuits" ]; then
cp -r "${logosBlockchainModule}/lib/circuits" "$out/modules/"
if [ -d "${logosBlockchainModule}/share/circuits" ]; then
cp -r "${logosBlockchainModule}/share/circuits" "$out/modules/"
fi
# Copy blockchain_ui Qt plugin to root directory (not modules, as it's loaded differently)

View File

@ -42,8 +42,8 @@ pkgs.stdenv.mkDerivation {
fi
# Copy circuits from blockchain module so result/lib/circuits is available
if [ -d "${logosBlockchainModule}/lib/circuits" ]; then
cp -r "${logosBlockchainModule}/lib/circuits" $out/modules/
if [ -d "${logosBlockchainModule}/share/circuits" ]; then
cp -r "${logosBlockchainModule}/share/circuits" $out/modules/
fi
runHook postInstall