Skip to content
Open
3 changes: 3 additions & 0 deletions _sources/hydra-cardano-api/1.0.0/meta.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
timestamp = 2025-10-30T06:30:41Z
github = { repo = "cardano-scaling/hydra", rev = "1.0.0" }
subdir = 'hydra-cardano-api'
3 changes: 3 additions & 0 deletions _sources/hydra-chain-observer/1.0.0/meta.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
timestamp = 2025-10-30T06:30:41Z
github = { repo = "cardano-scaling/hydra", rev = "1.0.0" }
subdir = 'hydra-chain-observer'
3 changes: 3 additions & 0 deletions _sources/hydra-cluster/1.0.0/meta.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
timestamp = 2025-10-30T06:30:41Z
github = { repo = "cardano-scaling/hydra", rev = "1.0.0" }
subdir = 'hydra-cluster'
3 changes: 3 additions & 0 deletions _sources/hydra-node/1.0.0/meta.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
timestamp = 2025-10-30T06:30:41Z
github = { repo = "cardano-scaling/hydra", rev = "1.0.0" }
subdir = 'hydra-node'
3 changes: 3 additions & 0 deletions _sources/hydra-plutus-extras/1.0.0/meta.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
timestamp = 2025-10-30T06:30:41Z
github = { repo = "cardano-scaling/hydra", rev = "1.0.0" }
subdir = 'hydra-plutus-extras'
3 changes: 3 additions & 0 deletions _sources/hydra-plutus/1.0.0/meta.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
timestamp = 2025-10-30T06:30:41Z
github = { repo = "cardano-scaling/hydra", rev = "1.0.0" }
subdir = 'hydra-plutus'
3 changes: 3 additions & 0 deletions _sources/hydra-prelude/1.0.0/meta.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
timestamp = 2025-10-30T06:30:41Z
github = { repo = "cardano-scaling/hydra", rev = "1.0.0" }
subdir = 'hydra-prelude'
3 changes: 3 additions & 0 deletions _sources/hydra-test-utils/1.0.0/meta.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
timestamp = 2025-10-30T06:30:41Z
github = { repo = "cardano-scaling/hydra", rev = "1.0.0" }
subdir = 'hydra-test-utils'
3 changes: 3 additions & 0 deletions _sources/hydra-tui/1.0.0/meta.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
timestamp = 2025-10-30T06:30:41Z
github = { repo = "cardano-scaling/hydra", rev = "1.0.0" }
subdir = 'hydra-tui'
3 changes: 3 additions & 0 deletions _sources/hydra-tx/1.0.0/meta.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
timestamp = 2025-10-30T06:30:41Z
github = { repo = "cardano-scaling/hydra", rev = "1.0.0" }
subdir = 'hydra-tx'
10 changes: 5 additions & 5 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

27 changes: 16 additions & 11 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
url = "github:input-output-hk/foliage";
inputs.nixpkgs.follows = "nixpkgs";
inputs.haskell-nix.follows = "haskell-nix";
inputs.hackage-nix.follows = "hackage-nix";
inputs.flake-utils.follows = "flake-utils";
};

Expand All @@ -24,7 +23,7 @@
};

CHaP = {
url = "github:input-output-hk/cardano-haskell-packages?ref=repo";
url = "github:IntersectMBO/cardano-haskell-packages?ref=repo";
flake = false;
};

Expand Down Expand Up @@ -214,15 +213,21 @@
let addPackageKeys = x: x // { package-keys = builtins.attrNames x.packages; };
in {
modules = [
(addPackageKeys {
# Packages that depend on the plutus-tx plugin have broken haddock
packages = {
cardano-node-emulator.doHaddock = false;
plutus-ledger.doHaddock = false;
plutus-script-utils.doHaddock = false;
plutus-scripts-bench.doHaddock = false;
};
})
({ pkgs, ... }:
addPackageKeys {
# Packages that depend on the plutus-tx plugin have broken haddock
packages = {
cardano-node-emulator.doHaddock = false;
plutus-ledger.doHaddock = false;
plutus-script-utils.doHaddock = false;
plutus-scripts-bench.doHaddock = false;

hydra-node.components.library.build-tools = [ pkgs.etcd ];
proto-lens-protobuf-types.components.library.build-tools = [ pkgs.protobuf ];
proto-lens-etcd.components.library.build-tools = [ pkgs.protobuf ];
};
}
)
];
};

Expand Down
Loading