|
3 | 3 | # TODO: Move this to a docs generator |
4 | 4 | # |
5 | 5 | # Attributes available on flakeModule import: |
| 6 | +# flake.cardano-parts.pkgs.special.blockfrost-platform-service |
6 | 7 | # flake.cardano-parts.pkgs.special.cardanoLib |
7 | 8 | # flake.cardano-parts.pkgs.special.cardanoLibCustom |
8 | 9 | # flake.cardano-parts.pkgs.special.cardanoLibNg |
|
23 | 24 | # flake.cardano-parts.pkgs.special.cardano-tracer-service-ng |
24 | 25 | # flake.cardano-parts.pkgs.special.cardano-smash-service |
25 | 26 | # perSystem.cardano-parts.pkgs.bech32 |
26 | | -# perSystem.cardano-parts.pkgs.cardano-address |
| 27 | +# perSystem.cardano-parts.pkgs.blockfrost-platform |
27 | 28 | # perSystem.cardano-parts.pkgs.blockperf |
| 29 | +# perSystem.cardano-parts.pkgs.cardano-address |
28 | 30 | # perSystem.cardano-parts.pkgs.cardano-cli |
29 | 31 | # perSystem.cardano-parts.pkgs.cardano-cli-ng |
30 | 32 | # perSystem.cardano-parts.pkgs.cardano-db-sync |
|
115 | 117 |
|
116 | 118 | specialPkgsSubmodule = submodule { |
117 | 119 | options = { |
| 120 | + blockfrost-platform-service = mkOption { |
| 121 | + type = str; |
| 122 | + description = mdDoc "The cardano-parts default blockfrost-platform-service import path string."; |
| 123 | + default = "${localFlake.inputs.blockfrost-platform-service}/nix/nixos"; |
| 124 | + }; |
| 125 | + |
118 | 126 | cardanoLib = mkOption { |
119 | 127 | type = anything; |
120 | 128 | description = mdDoc '' |
|
427 | 435 | options = foldl' recursiveUpdate {} [ |
428 | 436 | # TODO: Fix the missing meta/version info upstream |
429 | 437 | (mkPkg "bech32" caPkgs."bech32-input-output-hk-cardano-node-10-2-1-52b708f") |
| 438 | + (mkPkg "blockfrost-platform" caPkgs.default-blockfrost-blockfrost-platform-0-0-2-e06029b) |
430 | 439 | (mkPkg "blockperf" caPkgs.blockperf-cardano-foundation-blockperf-main-87f6f67) |
431 | 440 | (mkPkg "cardano-address" caPkgs.cardano-address-cardano-foundation-cardano-wallet-v2024-11-18-9eb5f59) |
432 | 441 | (mkPkg "cardano-cli" (caPkgs."cardano-cli-input-output-hk-cardano-node-10-2-1-52b708f" // {version = "10.4.0.0";})) |
|
472 | 481 | (mkPkg "metadata-validator-github" caPkgs.metadata-validator-github-input-output-hk-offchain-metadata-tools-ops-1-0-0-f406c6d) |
473 | 482 | (mkPkg "metadata-webhook" caPkgs.metadata-webhook-input-output-hk-offchain-metadata-tools-ops-1-0-0-f406c6d) |
474 | 483 | (mkPkg "mithril-client-cli" (recursiveUpdate caPkgs.mithril-client-cli-input-output-hk-mithril-2513-0-pre-1fb85a7 {meta.mainProgram = "mithril-client";})) |
475 | | - (mkPkg "mithril-client-cli-ng" (recursiveUpdate caPkgs.mithril-client-cli-input-output-hk-mithril-unstable-0d66de9 {meta.mainProgram = "mithril-client";})) |
| 484 | + (mkPkg "mithril-client-cli-ng" (recursiveUpdate caPkgs.mithril-client-cli-input-output-hk-mithril-unstable-c2b3494 {meta.mainProgram = "mithril-client";})) |
476 | 485 | # To update once capkgs builds and caches 2506 signer successfully |
477 | 486 | (mkPkg "mithril-signer" (recursiveUpdate caPkgs.mithril-signer-input-output-hk-mithril-2513-0-pre-1fb85a7 {meta.mainProgram = "mithril-signer";})) |
478 | | - (mkPkg "mithril-signer-ng" (recursiveUpdate caPkgs.mithril-signer-input-output-hk-mithril-unstable-0d66de9 {meta.mainProgram = "mithril-signer";})) |
| 487 | + (mkPkg "mithril-signer-ng" (recursiveUpdate caPkgs.mithril-signer-input-output-hk-mithril-unstable-c2b3494 {meta.mainProgram = "mithril-signer";})) |
479 | 488 | (mkPkg "orchestrator-cli" caPkgs.orchestrator-cli-IntersectMBO-credential-manager-0-1-2-0-081cc8c) |
480 | 489 | (mkPkg "token-metadata-creator" (recursiveUpdate caPkgs.token-metadata-creator-input-output-hk-offchain-metadata-tools-ops-1-0-0-f406c6d {meta.mainProgram = "token-metadata-creator";})) |
481 | 490 | (mkPkg "tx-bundle" caPkgs.tx-bundle-IntersectMBO-credential-manager-0-1-2-0-081cc8c) |
|
495 | 504 | inherit |
496 | 505 | (cfgPkgs) |
497 | 506 | bech32 |
| 507 | + blockfrost-platform |
498 | 508 | blockperf |
499 | 509 | cc-sign |
500 | 510 | cardano-address |
|
0 commit comments