Skip to content

Commit db723d3

Browse files
committed
Add cardano-node 8.9.1
1 parent ed7fc51 commit db723d3

File tree

2 files changed

+44
-0
lines changed

2 files changed

+44
-0
lines changed

native-arm/flake.lock

Lines changed: 18 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

native-arm/flake.nix

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
cardano-node-1-35-7 = { url = "github:IntersectMBO/cardano-node/1.35.7"; flake = false; };
88
cardano-node-8-8-0-pre = { url = "github:IntersectMBO/cardano-node/8.8.0-pre"; flake = false; };
99
cardano-node-8-9-0 = { url = "github:IntersectMBO/cardano-node/8.9.0"; flake = false; };
10+
cardano-node-8-9-1 = { url = "github:IntersectMBO/cardano-node/8.9.1"; flake = false; };
1011

1112
cardano-db-sync-13-1-0-0 = { url = "github:IntersectMBO/cardano-db-sync/13.1.0.0"; flake = false; };
1213
cardano-db-sync-sancho-4-0-0 = { url = "github:IntersectMBO/cardano-db-sync/sancho-4-0-0"; flake = false; };
@@ -396,6 +397,31 @@
396397
{ name = "${input}--oci-submit-api"; value = retagOCI "cardano-submit-api" version theFlake.legacyPackages.${system}.submitApiDockerImage; }
397398
])
398399

400+
++
401+
402+
(let
403+
input = "cardano-node-8-9-1";
404+
version = (builtins.fromJSON (builtins.readFile ./flake.lock)).nodes.${input}.original.ref;
405+
theFlake = (import inputs.flake-compat {
406+
src = enableAArch64 {
407+
original = inputs.${input};
408+
supportedSystemsPath = "nix/supported-systems.nix";
409+
extraPatch = ''
410+
sed -r '
411+
s/"ghc8107"/"ghc963"/g
412+
s/"-fexternal-interpreter"//g
413+
' -i $out/nix/haskell.nix
414+
'';
415+
};
416+
}).defaultNix;
417+
in [
418+
# { name = "${input}--flake"; value = theFlake; }
419+
# { name = "${input}--cardano-node"; value = theFlake.packages.${system}.cardano-node; }
420+
# { name = "${input}--cardano-submit-api"; value = theFlake.packages.${system}.cardano-submit-api; }
421+
{ name = "${input}--oci"; value = retagOCI "cardano-node" version theFlake.legacyPackages.${system}.dockerImage; }
422+
{ name = "${input}--oci-submit-api"; value = retagOCI "cardano-submit-api" version theFlake.legacyPackages.${system}.submitApiDockerImage; }
423+
])
424+
399425
);
400426
};
401427
}

0 commit comments

Comments
 (0)