|
| 1 | +{ |
| 2 | + description = "Cicero jobs populating https://cache.iog.io – this cannot yet build Daedalus"; |
| 3 | + inputs = {}; |
| 4 | + outputs = inputs: { |
| 5 | + hydraJobs = { |
| 6 | + |
| 7 | + # --- Linux ---------------------------------------------------- |
| 8 | + x86_64-linux = let |
| 9 | + d = import ./default.nix { target = "x86_64-linux"; localLibSystem = "x86_64-linux"; }; |
| 10 | + in { |
| 11 | + cardano-bridge = d.daedalus-bridge; |
| 12 | + cardano-node = d.cardano-node; |
| 13 | + # daedalus = d.daedalus; # TODO: I’m really not sure if it still makes sense, if we have Buildkite… |
| 14 | + daedalus-installer = d.daedalus-installer; |
| 15 | + devShellGCRoot = (import ./shell.nix { system = "x86_64-linux"; autoStartBackend = true; }).gcRoot; |
| 16 | + mono = d.pkgs.mono; |
| 17 | + nodejs = d.nodejs; |
| 18 | + tests = d.tests; |
| 19 | + wine = d.wine; |
| 20 | + wine64 = d.wine64; |
| 21 | + yaml2json = d.yaml2json; |
| 22 | + }; |
| 23 | + # -------------------------------------------------------------- |
| 24 | + |
| 25 | + # --- Windows (x-compiled from Linux) -------------------------- |
| 26 | + x86_64-windows = let |
| 27 | + d = import ./default.nix { target = "x86_64-windows"; localLibSystem = "x86_64-linux"; }; |
| 28 | + in { |
| 29 | + cardano-bridge = d.daedalus-bridge; |
| 30 | + cardano-node = d.cardano-node; |
| 31 | + }; |
| 32 | + # -------------------------------------------------------------- |
| 33 | + |
| 34 | + # --- Darwin --------------------------------------------------- |
| 35 | + x86_64-darwin = let |
| 36 | + d = import ./default.nix { target = "x86_64-darwin"; localLibSystem = "x86_64-darwin"; }; |
| 37 | + in { |
| 38 | + cardano-bridge = d.daedalus-bridge; |
| 39 | + cardano-node = d.cardano-node; |
| 40 | + daedalus-installer = d.daedalus-installer; |
| 41 | + devShellGCRoot = (import ./shell.nix { system = "x86_64-darwin"; autoStartBackend = true; }).gcRoot; |
| 42 | + nodejs = d.nodejs; |
| 43 | + yaml2json = d.yaml2json; |
| 44 | + }; |
| 45 | + # -------------------------------------------------------------- |
| 46 | + |
| 47 | + }; |
| 48 | + }; |
| 49 | + # --- Flake Local Nix Configuration ---------------------------- |
| 50 | + nixConfig = { |
| 51 | + extra-substituters = ["https://cache.iog.io" "https://iog.cachix.org"]; |
| 52 | + extra-trusted-public-keys = ["hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ=" "iog.cachix.org-1:nYO0M9xTk/s5t1Bs9asZ/Sww/1Kt/hRhkLP0Hhv/ctY="]; |
| 53 | + allow-import-from-derivation = "true"; |
| 54 | + }; |
| 55 | + # -------------------------------------------------------------- |
| 56 | +} |
0 commit comments