From 371c109233bff7583ac7719652d158beaf924e4f Mon Sep 17 00:00:00 2001 From: Michael Fellinger Date: Tue, 26 Sep 2023 14:17:01 +0200 Subject: [PATCH] add github action --- .github/workflows/update.yml | 41 + .gitignore | 1 + Justfile | 22 +- flake.nix | 35 +- packages.cr | 341 +++++ packages.json | 2285 +++++++++++++++++++--------------- packages.rb | 286 ----- releases.nu | 83 -- 8 files changed, 1675 insertions(+), 1419 deletions(-) create mode 100644 .github/workflows/update.yml create mode 100644 .gitignore create mode 100755 packages.cr delete mode 100755 packages.rb delete mode 100755 releases.nu diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml new file mode 100644 index 0000000..b4dc5c8 --- /dev/null +++ b/.github/workflows/update.yml @@ -0,0 +1,41 @@ +name: Update +run-name: ${{github.actor}} is updating capkgs +on: + workflow_dispatch: + push: + branches: + - main + pull_request: +permissions: + contents: read + pull-requests: read +concurrency: + group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' + cancel-in-progress: true +jobs: + update: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Cache Packages + id: cache-packages + uses: actions/cache@v3 + with: + path: cache + key: cache-packages + - name: Install Nix + uses: cachix/install-nix-action@v23 + with: + extra_nix_config: | + trusted-public-keys = hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= + substituters = https://cache.iog.io https://cache.nixos.org/ + - run: echo "${{secrets.NIX_SIGNING_KEY}}" > hydra_key + - run: nix develop --ignore-environment --keep NIX_STORE --keep AWS_ACCESS_KEY_ID --keep AWS_SECRET_ACCESS_KEY --keep S3_ENDPOINT --command just ci + env: + AWS_ACCESS_KEY_ID: "${{secrets.AWS_ACCESS_KEY_ID}}" + AWS_SECRET_ACCESS_KEY: "${{secrets.AWS_SECRET_ACCESS_KEY}}" + S3_ENDPOINT: "${{secrets.S3_ENDPOINT}}" + NIX_STORE: "${{secrets.NIX_STORE}}" + - run: nix develop --ignore-environment --command just check + - run: git add packages.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e906414 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/cache \ No newline at end of file diff --git a/Justfile b/Justfile index ce82081..5ff94de 100644 --- a/Justfile +++ b/Justfile @@ -2,12 +2,26 @@ list: just -l +export RCLONE_S3_PROVIDER := "Cloudflare" +export RCLONE_S3_REGION := "auto" + # Based on releases.json, upload the CA contents and update packages.json packages *ARGS: - ./packages.rb \ - --from "s3://devx?profile=r2&secret-key=hydra_key&endpoint=fc0e8a9d61fc1f44f378bdc5fdc0f638.r2.cloudflarestorage.com®ion=auto&compression=zstd" \ - --to "s3://devx?profile=r2&secret-key=hydra_key&endpoint=fc0e8a9d61fc1f44f378bdc5fdc0f638.r2.cloudflarestorage.com®ion=auto&compression=zstd" \ - --systems x86_64-linux {{ARGS}} + ./packages.cr \ + --from "https://cache.iog.io" \ + --to "s3://devx?secret-key=hydra_key&endpoint=${S3_ENDPOINT}®ion=${RCLONE_S3_REGION}&compression=zstd" \ + --nix-store "${NIX_SSH_NG_STORE}" \ + --systems x86_64-linux {{ARGS}} + +# Based on releases.json, upload the CA contents and update packages.json +ci: + rclone --s3-endpoint ${S3_ENDPOINT} --verbose copy s3://devx/capkgs cache + ./packages.cr \ + --from "https://cache.iog.io" \ + --to "s3://devx?secret-key=hydra_key&endpoint=${S3_ENDPOINT}®ion=${RCLONE_S3_REGION}&compression=zstd" \ + --nix-store "${NIX_SSH_NG_STORE}" \ + --systems x86_64-linux {{ARGS}} + rclone --s3-endpoint ${S3_ENDPOINT} --verbose sync cache s3://devx/capkgs # Attempt to build all packages from this flake check: diff --git a/flake.nix b/flake.nix index 297b93b..300b212 100644 --- a/flake.nix +++ b/flake.nix @@ -4,7 +4,7 @@ inherit (import ./lib.nix) filterAttrs symlinkPath sane mapAndMergeAttrs aggregate; # This is a really verbose name, but it ensures we don't get collisions - nameOf = pkg: sane "${pkg.meta.name or pkg.meta.pname}-${pkg.org}-${pkg.repo}-${pkg.tag}"; + nameOf = pkg: sane "${pkg.meta.name or pkg.meta.pname}-${pkg.org_name}-${pkg.repo_name}-${pkg.version}"; pp = v: builtins.trace (builtins.toJSON v) v; packagesJson = fromJSON (readFile ./packages.json); @@ -22,15 +22,14 @@ validPackages; system = "x86_64-linux"; + + # These inputs are purely used for the devShell and hydra to avoid any + # evaluation and download of nixpkgs for just building a package. flakes = { nixpkgs = builtins.getFlake "github:nixos/nixpkgs?rev=bfb7dfec93f3b5d7274db109f2990bc889861caf"; nix = builtins.getFlake "github:nixos/nix?rev=8fbb4598c24b89c73db318ca7de7f78029cd61f4"; }; - # These inputs are purely used for the devShell and hydra to avoid any - # evaluation and download of nixpkgs for just building a package. - inherit (flakes.nixpkgs.legacyPackages.${system}) mkShell nushell just ruby solargraph treefmt curl; - # At least 2.17 is required for this fix: https://github.com/NixOS/nix/pull/4282 inherit (flakes.nix.packages.${system}) nix; in @@ -40,17 +39,21 @@ constituents = attrValues inputs.self.packages.x86_64-linux; }; - devShells.${system}.default = mkShell { - nativeBuildInputs = [ - nushell - just - ruby - solargraph - nix - treefmt - curl - ]; - }; + devShells.${system}.default = with (flakes.nixpkgs.legacyPackages.${system}); + mkShell { + nativeBuildInputs = [ + crystal + crystalline + curl + gitMinimal + just + nix + nushell + pcre + treefmt + watchexec + ]; + }; } // packages; } diff --git a/packages.cr b/packages.cr new file mode 100755 index 0000000..bcb5c88 --- /dev/null +++ b/packages.cr @@ -0,0 +1,341 @@ +#!/usr/bin/env crystal + +require "json" +require "option_parser" +require "file_utils" + +class Config + property from : String? + property to : String? + property nix_store : String? + property systems : Array(String)? + + def parse + OptionParser.parse do |parser| + parser.banner = "Usage: capkgs [options]" + + parser.on "--from=URL", "Nix store URL to fetch inputs from" { |v| @from = v } + parser.on "--to=URL", "Nix store URL to copy CA outputs to" { |v| @to = v } + parser.on "--systems=A,B", "systems to process" { |v| @systems = v.split.map(&.strip) } + parser.on "--nix-store=STORE", "store URI" { |v| @nix_store = v } + + parser.on "-h", "--help", "Show this help" do + puts parser + exit + end + end + + raise "Missing required flag: --from" unless from_value = @from + raise "Missing required flag: --to" unless to_value = @to + raise "Missing required flag: --systems" unless systems_value = @systems + raise "Missing required flag: --nix-store" unless nix_store_value = @nix_store + + Valid.new(from_value, to_value, systems_value, nix_store_value) + end + + struct Valid + property from : String + property to : String + property systems : Array(String) + property nix_store : String + + def initialize(@from, @to, @systems, @nix_store) + end + end +end + +config = Config.new.parse +pp! config + +def sh(command : String, *args : String) + output = IO::Memory.new + error = IO::Memory.new + puts Process.quote_posix([command, *args]) + status = Process.run(command, args, output: output, error: error) + + Result.new([command, *args], output.to_s, error.to_s, status.exit_code).tap do |result| + puts result.status.inspect + + puts "STDOUT:" + puts result.stdout + + puts "STDERR:" + puts result.stderr + end +end + +def fetch_git_branches(org_name, repo_name, branches, dest) + url = "https://github.com/#{org_name}/#{repo_name}" + + refs_branches = branches.map do |branch| + if File.file?(dest) && (found = JSON.parse(File.read(dest))[branch]) + next [branch, found.as_s] + end + + result = sh("git", "ls-remote", "--exit-code", url, "refs/heads/#{branch}") + raise "failed to fetch branch '#{branch}' from #{url}" unless result.success? + + rev, _ = result.stdout.lines.first.strip.split + [branch, rev] + end + + puts "writing #{dest}" + File.write(dest, refs_branches.to_h.to_pretty_json) +end + +def fetch_git_tags(org_name, repo_name, pattern, dest) + url = "https://github.com/#{org_name}/#{repo_name}" + result = sh("git", "ls-remote", "--exit-code", url, "refs/tags/*") + return {} of String => String unless result.success? + + rpattern = Regex.new(pattern) + refs_tags = result.stdout.lines.select { |line| line =~ rpattern }.map do |line| + rev, ref = line.strip.split + [ref.sub(/^refs\/(tags|heads)\//, ""), rev] + end + + puts "writing #{dest}" + File.write(dest, refs_tags.to_h.to_pretty_json) +end + +def fetch_github_releases(org_name, repo_name, dest) + releases_url = "https://api.github.com/repos/#{org_name}/#{repo_name}/releases" + # Use curl here to take advantage of netrc for the token without having to parse it + curl_result = sh("curl", "-s", "--fail-with-body", releases_url) + return {} of String => String unless curl_result.success? + + tag_names = Array(GithubRelease).from_json(curl_result.stdout).map { |release| release.tag_name } + refs_tags = tag_names.map do |tag_name| + if File.file?(dest) && (found = JSON.parse(File.read(dest))[tag_name]) + next [tag_name, found.as_s] + end + + tags_url = "https://github.com/#{org_name}/#{repo_name}" + tags_result = sh("git", "ls-remote", "--exit-code", "--tags", tags_url, tag_name) + raise "Failed to fetch #{tag_name} from #{tags_url}" unless tags_result.success? + + pattern = /refs\/tags\/#{Regex.escape(tag_name)}/ + matching = tags_result.stdout.lines.select { |line| line =~ pattern } + rev, ref = matching.first.strip.split + [tag_name, rev] + end + + puts "writing #{dest}" + File.write(dest, refs_tags.to_h.to_pretty_json) +end + +def update_releases + Projects.from_json(File.read("projects.json")).each do |org_name, repos| + repos.flat_map do |repo_name, repo| + dest = "releases/#{org_name}/#{repo_name}.json" + FileUtils.mkdir_p(File.dirname(dest)) + + case repo + when Repo::GitBranches + fetch_git_branches(org_name, repo_name, repo.branches, dest) + when Repo::GitTags + fetch_git_tags(org_name, repo_name, repo.pattern, dest) + when Repo::GithubReleases + fetch_github_releases(org_name, repo_name, dest) + else + raise "Invalid project type: #{repo.type}" + end + end + end +end + +struct Result + include JSON::Serializable + property command : Array(String) + property stdout : String + property stderr : String + property status : Int32 + + def initialize(@command, @stdout, @stderr, @status) + end + + def success? + status == 0 + end +end + +struct GithubRelease + include JSON::Serializable + property tag_name : String +end + +struct Repo + include JSON::Serializable + + use_json_discriminator "type", { + git_branches: GitBranches, + git_tags: GitTags, + github_releases: GithubReleases, + } + + struct GitBranches + include JSON::Serializable + property packages : Array(String) + property branches : Array(String) + end + + struct GithubReleases + include JSON::Serializable + property packages : Array(String) + end + + struct GitTags + include JSON::Serializable + property packages : Array(String) + property pattern : String + end +end + +alias Repos = Hash(String, Repo::GitBranches | Repo::GithubReleases | Repo::GitTags) +alias Projects = Hash(String, Repos) +alias Releases = Hash(String, String) + +struct Package + include JSON::Serializable + + @[JSON::Field(ignore: true)] + property config : ::Config::Valid + + property name : String + property version : String + property commit : String + property org_name : String + property repo_name : String + property meta : Hash(String, JSON::Any)? + property output : String? + property closure : NamedTuple(fromPath: String, toPath: String, fromStore: String)? + property pname : String? + property system : String + + def initialize(@config, @system, @name, @version, @commit, @org_name, @repo_name) + end + + def <=>(other : Package) + flake_url <=> other.flake_url + end + + def flake_url + name.gsub("${tag}", commit).gsub("${system}", @system) + end + + def eval_file_path + "cache/evals/#{flake_url}.json" + end + + def build_file_path + "cache/builds/#{flake_url}.json" + end + + def closure_file_path + "cache/closures/#{flake_url}.json" + end + + CODE = <<-CODE.gsub(/\s+/, ' ').strip + d: { + pname = d.pname or d.name or null; + version = d.version or null; + meta = d.meta or null; + } + CODE + + def nix_eval + process(eval_file_path, + "nix", "eval", flake_url, + "--eval-store", "auto", + "--store", config.nix_store, + "--accept-flake-config", + "--no-write-lock-file", + "--json", + "--apply", CODE, + ) do |stdout| + @meta = stdout["meta"].as_h + @pname = stdout["pname"].as_s + @version = stdout["version"].as_s + end + end + + def nix_build + process(build_file_path, + "nix", "build", flake_url, + "--eval-store", "auto", + "--store", config.nix_store, + "--accept-flake-config", + "--no-write-lock-file", + "--no-link", + "--json", + ) do |stdout| + stdout.dig?(0, "outputs", "out").try { |o| @output = o.as_s } + end + end + + def nix_store_make_content_addressed(config) + path = output.not_nil! + process(closure_file_path, + "nix", "store", "make-content-addressed", path, "--json", + "--eval-store", "auto", + "--store", config.nix_store, + "--from", config.from, + "--to", config.to, + ) do |stdout| + stdout.dig?("rewrites", path).try { |to_path| + @closure = {fromPath: path, toPath: to_path.as_s, fromStore: config.from} + } + end + end + + def mkdirs + [eval_file_path, build_file_path, closure_file_path].each do |path| + FileUtils.mkdir_p(File.dirname(path)) + end + end + + def process(path, command : String, *args) + if File.file?(path) + puts "Skipping #{path}" + result = Result.from_json(File.read(path)) + (result.status == 0) && yield(JSON.parse(result.stdout)) + else + result = sh(command, *args) + File.write(path, result.to_pretty_json) + yield(JSON.parse(result.stdout)) if result.success? + end + end +end + +def each_package(config, &block : Package -> Nil) + packages = + config.systems.map do |system| + Projects.from_json(File.read("projects.json")).map do |org_name, repos| + repos.map do |repo_name, repo| + Releases.from_json(File.read("releases/#{org_name}/#{repo_name}.json")).map do |version, commit| + repo.packages.map do |package| + Package.new(config, system, package, version, commit, org_name, repo_name) + end + end + end + end + end + + packages.flatten.sort.each(&block) +end + +Signal::INT.trap { exit } + +update_releases + +valid = {} of String => Package + +each_package(config) do |pkg| + pkg.mkdirs + pkg.nix_eval && + pkg.nix_build && + pkg.nix_store_make_content_addressed(config) + valid[pkg.flake_url] = pkg if pkg.closure +end + +File.open("packages.json", "w+") { |fd| valid.to_pretty_json(fd) } diff --git a/packages.json b/packages.json index c51c1f9..107b79e 100644 --- a/packages.json +++ b/packages.json @@ -1,9 +1,10 @@ { - "github:cardano-foundation/cardano-wallet/4eade336d69f4c4f64142c3643399e20c8d27d0f#packages.x86_64-linux.cardano-address": { - "org": "cardano-foundation", - "repo": "cardano-wallet", - "tag": "3.9.0", - "rev": "4eade336d69f4c4f64142c3643399e20c8d27d0f", + "github:cardano-foundation/cardano-wallet/211c357a91d48b30fdf77a3a169499b38822f9cd#packages.x86_64-linux.cardano-address": { + "name": "github:cardano-foundation/cardano-wallet/${tag}#packages.${system}.cardano-address", + "version": "3.11.0", + "commit": "211c357a91d48b30fdf77a3a169499b38822f9cd", + "org_name": "cardano-foundation", + "repo_name": "cardano-wallet", "meta": { "available": true, "broken": false, @@ -19,7 +20,7 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "name": "cardano-addresses-cli-exe-cardano-address-3.9.0", + "name": "cardano-addresses-cli-exe-cardano-address-3.11.0", "outputsToInstall": [ "out" ], @@ -45,6 +46,7 @@ "i686-linux", "m68k-linux", "mipsel-linux", + "mips64el-linux", "powerpc64-linux", "powerpc64le-linux", "riscv32-linux", @@ -64,6 +66,7 @@ "riscv32-netbsd", "riscv64-netbsd", "x86_64-netbsd", + "aarch64_be-none", "aarch64-none", "arm-none", "armv6l-none", @@ -73,6 +76,7 @@ "or1k-none", "m68k-none", "powerpc-none", + "powerpcle-none", "riscv32-none", "riscv64-none", "s390-none", @@ -87,38 +91,30 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/kvzmrz9wcp79bb23k2xz15cwp4dacfss-source/builder/comp-builder.nix:339", + "position": "/nix/store/xbj4lqck18yww2bkpzdsia0xliawa9zn-source/builder/comp-builder.nix:349", "unfree": false, "unsupported": false }, + "output": "/nix/store/5vyn0j5c3v4gdgpgp4996qagk0gkjmnp-cardano-addresses-cli-exe-cardano-address-3.11.0", "closure": { - "fromPath": "/nix/store/kawsrqwkygw235jjl83rsns6f0r65cw9-cardano-addresses-cli-exe-cardano-address-3.9.0", - "toPath": "/nix/store/avy854xa4h0123x453g5wzmyrjsl3qdv-cardano-addresses-cli-exe-cardano-address-3.9.0", + "fromPath": "/nix/store/5vyn0j5c3v4gdgpgp4996qagk0gkjmnp-cardano-addresses-cli-exe-cardano-address-3.11.0", + "toPath": "/nix/store/6bh1parfqpvviymhaac4vgagxrsf8cgl-cardano-addresses-cli-exe-cardano-address-3.11.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-addresses-cli-exe-cardano-address", "system": "x86_64-linux" }, - "github:cardano-foundation/cardano-wallet/aee7e5373c956bd771390e9b5e7616eb39290c76#packages.x86_64-linux.cardano-address": { - "org": "cardano-foundation", - "repo": "cardano-wallet", - "tag": "3.10.0", - "rev": "aee7e5373c956bd771390e9b5e7616eb39290c76", + "github:cardano-foundation/cardano-wallet/211c357a91d48b30fdf77a3a169499b38822f9cd#packages.x86_64-linux.cardano-wallet": { + "name": "github:cardano-foundation/cardano-wallet/${tag}#packages.${system}.cardano-wallet", + "version": "2022.7.1", + "commit": "211c357a91d48b30fdf77a3a169499b38822f9cd", + "org_name": "cardano-foundation", + "repo_name": "cardano-wallet", "meta": { "available": true, "broken": false, - "description": "Utils for constructing a command-line on top of cardano-addresses.", - "homepage": "https://github.com/input-output-hk/cardano-addresses#readme", "insecure": false, - "license": [ - { - "free": true, - "fullName": "Apache License 2.0", - "shortName": "Apache-2.0", - "spdxId": "Apache-2.0", - "url": "https://spdx.org/licenses/Apache-2.0.html" - } - ], - "name": "cardano-addresses-cli-exe-cardano-address-3.10.0", + "name": "cardano-wallet-2022.7.1", "outputsToInstall": [ "out" ], @@ -144,6 +140,7 @@ "i686-linux", "m68k-linux", "mipsel-linux", + "mips64el-linux", "powerpc64-linux", "powerpc64le-linux", "riscv32-linux", @@ -163,6 +160,7 @@ "riscv32-netbsd", "riscv64-netbsd", "x86_64-netbsd", + "aarch64_be-none", "aarch64-none", "arm-none", "armv6l-none", @@ -172,6 +170,7 @@ "or1k-none", "m68k-none", "powerpc-none", + "powerpcle-none", "riscv32-none", "riscv64-none", "s390-none", @@ -186,22 +185,25 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/kvzmrz9wcp79bb23k2xz15cwp4dacfss-source/builder/comp-builder.nix:339", + "position": "/nix/store/zaydr0fywmm7d07p810qpmg5ih6b0w7q-source/nix/release-build.nix:15", "unfree": false, "unsupported": false }, + "output": "/nix/store/5fwvndx9jl8rypxvln7br8k90rp3h1kh-cardano-wallet-2022.7.1", "closure": { - "fromPath": "/nix/store/0svzvzhlkxl20vngkva2j2ckxz109mvs-cardano-addresses-cli-exe-cardano-address-3.10.0", - "toPath": "/nix/store/ai7pn8q16wf36w6rbqdgidkah17lxdfr-cardano-addresses-cli-exe-cardano-address-3.10.0", + "fromPath": "/nix/store/5fwvndx9jl8rypxvln7br8k90rp3h1kh-cardano-wallet-2022.7.1", + "toPath": "/nix/store/pvf5hmzr92hzrcq54di6n6rzy604n4jm-cardano-wallet-2022.7.1", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-wallet-2022.7.1", "system": "x86_64-linux" }, - "github:cardano-foundation/cardano-wallet/211c357a91d48b30fdf77a3a169499b38822f9cd#packages.x86_64-linux.cardano-address": { - "org": "cardano-foundation", - "repo": "cardano-wallet", - "tag": "3.11.0", - "rev": "211c357a91d48b30fdf77a3a169499b38822f9cd", + "github:cardano-foundation/cardano-wallet/4eade336d69f4c4f64142c3643399e20c8d27d0f#packages.x86_64-linux.cardano-address": { + "name": "github:cardano-foundation/cardano-wallet/${tag}#packages.${system}.cardano-address", + "version": "3.9.0", + "commit": "4eade336d69f4c4f64142c3643399e20c8d27d0f", + "org_name": "cardano-foundation", + "repo_name": "cardano-wallet", "meta": { "available": true, "broken": false, @@ -217,7 +219,7 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "name": "cardano-addresses-cli-exe-cardano-address-3.11.0", + "name": "cardano-addresses-cli-exe-cardano-address-3.9.0", "outputsToInstall": [ "out" ], @@ -243,7 +245,6 @@ "i686-linux", "m68k-linux", "mipsel-linux", - "mips64el-linux", "powerpc64-linux", "powerpc64le-linux", "riscv32-linux", @@ -263,7 +264,6 @@ "riscv32-netbsd", "riscv64-netbsd", "x86_64-netbsd", - "aarch64_be-none", "aarch64-none", "arm-none", "armv6l-none", @@ -273,7 +273,6 @@ "or1k-none", "m68k-none", "powerpc-none", - "powerpcle-none", "riscv32-none", "riscv64-none", "s390-none", @@ -288,27 +287,42 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/xbj4lqck18yww2bkpzdsia0xliawa9zn-source/builder/comp-builder.nix:349", + "position": "/nix/store/kvzmrz9wcp79bb23k2xz15cwp4dacfss-source/builder/comp-builder.nix:339", "unfree": false, "unsupported": false }, + "output": "/nix/store/kawsrqwkygw235jjl83rsns6f0r65cw9-cardano-addresses-cli-exe-cardano-address-3.9.0", "closure": { - "fromPath": "/nix/store/5vyn0j5c3v4gdgpgp4996qagk0gkjmnp-cardano-addresses-cli-exe-cardano-address-3.11.0", - "toPath": "/nix/store/6bh1parfqpvviymhaac4vgagxrsf8cgl-cardano-addresses-cli-exe-cardano-address-3.11.0", + "fromPath": "/nix/store/kawsrqwkygw235jjl83rsns6f0r65cw9-cardano-addresses-cli-exe-cardano-address-3.9.0", + "toPath": "/nix/store/avy854xa4h0123x453g5wzmyrjsl3qdv-cardano-addresses-cli-exe-cardano-address-3.9.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-addresses-cli-exe-cardano-address", "system": "x86_64-linux" }, - "github:cardano-foundation/cardano-wallet/211c357a91d48b30fdf77a3a169499b38822f9cd#packages.x86_64-linux.cardano-wallet": { - "org": "cardano-foundation", - "repo": "cardano-wallet", - "tag": "2022.7.1", - "rev": "211c357a91d48b30fdf77a3a169499b38822f9cd", + "github:cardano-foundation/cardano-wallet/8ff4882288d913defe130011e34860c3522ba947#packages.x86_64-linux.cardano-address": { + "name": "github:cardano-foundation/cardano-wallet/${tag}#packages.${system}.cardano-address", + "version": "3.12.0", + "commit": "8ff4882288d913defe130011e34860c3522ba947", + "org_name": "cardano-foundation", + "repo_name": "cardano-wallet", "meta": { "available": true, "broken": false, + "description": "Utils for constructing a command-line on top of cardano-addresses.", + "homepage": "https://github.com/input-output-hk/cardano-addresses#readme", "insecure": false, - "name": "cardano-wallet-2022.7.1", + "license": [ + { + "free": true, + "fullName": "Apache License 2.0", + "shortName": "Apache-2.0", + "spdxId": "Apache-2.0", + "url": "https://spdx.org/licenses/Apache-2.0.html" + } + ], + "mainProgram": "cardano-address", + "name": "cardano-addresses-cli-exe-cardano-address-3.12.0", "outputsToInstall": [ "out" ], @@ -333,6 +347,8 @@ "armv7l-linux", "i686-linux", "m68k-linux", + "microblaze-linux", + "microblazeel-linux", "mipsel-linux", "mips64el-linux", "powerpc64-linux", @@ -360,6 +376,8 @@ "armv6l-none", "avr-none", "i686-none", + "microblaze-none", + "microblazeel-none", "msp430-none", "or1k-none", "m68k-none", @@ -367,6 +385,7 @@ "powerpcle-none", "riscv32-none", "riscv64-none", + "rx-none", "s390-none", "s390x-none", "vc4-none", @@ -379,38 +398,30 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/zaydr0fywmm7d07p810qpmg5ih6b0w7q-source/nix/release-build.nix:15", + "position": "/nix/store/9dc5n7i7s0vrx9fhhp4s79rsiki5gdmc-source/builder/comp-builder.nix:365", "unfree": false, "unsupported": false }, + "output": "/nix/store/ag7kd9iqn047nip9n616vm03ax80vgkf-cardano-addresses-cli-exe-cardano-address-3.12.0", "closure": { - "fromPath": "/nix/store/5fwvndx9jl8rypxvln7br8k90rp3h1kh-cardano-wallet-2022.7.1", - "toPath": "/nix/store/pvf5hmzr92hzrcq54di6n6rzy604n4jm-cardano-wallet-2022.7.1", + "fromPath": "/nix/store/ag7kd9iqn047nip9n616vm03ax80vgkf-cardano-addresses-cli-exe-cardano-address-3.12.0", + "toPath": "/nix/store/19iih7ipz1lvpbsnrxbq6ci7myh35s7n-cardano-addresses-cli-exe-cardano-address-3.12.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-addresses-cli-exe-cardano-address", "system": "x86_64-linux" }, - "github:cardano-foundation/cardano-wallet/9a072f90b8c52a7e25012269b21e2ddd8be28a74#packages.x86_64-linux.cardano-address": { - "org": "cardano-foundation", - "repo": "cardano-wallet", - "tag": "3.12.0", - "rev": "9a072f90b8c52a7e25012269b21e2ddd8be28a74", + "github:cardano-foundation/cardano-wallet/8ff4882288d913defe130011e34860c3522ba947#packages.x86_64-linux.cardano-wallet": { + "name": "github:cardano-foundation/cardano-wallet/${tag}#packages.${system}.cardano-wallet", + "version": "2022.12.14", + "commit": "8ff4882288d913defe130011e34860c3522ba947", + "org_name": "cardano-foundation", + "repo_name": "cardano-wallet", "meta": { "available": true, "broken": false, - "description": "Utils for constructing a command-line on top of cardano-addresses.", - "homepage": "https://github.com/input-output-hk/cardano-addresses#readme", "insecure": false, - "license": [ - { - "free": true, - "fullName": "Apache License 2.0", - "shortName": "Apache-2.0", - "spdxId": "Apache-2.0", - "url": "https://spdx.org/licenses/Apache-2.0.html" - } - ], - "name": "cardano-addresses-cli-exe-cardano-address-3.12.0", + "name": "cardano-wallet-2022.12.14", "outputsToInstall": [ "out" ], @@ -435,6 +446,8 @@ "armv7l-linux", "i686-linux", "m68k-linux", + "microblaze-linux", + "microblazeel-linux", "mipsel-linux", "mips64el-linux", "powerpc64-linux", @@ -462,6 +475,8 @@ "armv6l-none", "avr-none", "i686-none", + "microblaze-none", + "microblazeel-none", "msp430-none", "or1k-none", "m68k-none", @@ -469,6 +484,7 @@ "powerpcle-none", "riscv32-none", "riscv64-none", + "rx-none", "s390-none", "s390x-none", "vc4-none", @@ -481,22 +497,25 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/xbj4lqck18yww2bkpzdsia0xliawa9zn-source/builder/comp-builder.nix:349", + "position": "/nix/store/7x2izzhgad75lqh4pmci7p2nrcg4lw4r-source/nix/release-build.nix:15", "unfree": false, "unsupported": false }, + "output": "/nix/store/sjl8ri42k29bsvzn8vb2dvn9n485c1i3-cardano-wallet-2022.12.14", "closure": { - "fromPath": "/nix/store/0drbk8hrf5dgivw39dk6lhn6a2pg8l59-cardano-addresses-cli-exe-cardano-address-3.12.0", - "toPath": "/nix/store/y92dgwhgafhx4a9s57niagqnsn46j87y-cardano-addresses-cli-exe-cardano-address-3.12.0", + "fromPath": "/nix/store/sjl8ri42k29bsvzn8vb2dvn9n485c1i3-cardano-wallet-2022.12.14", + "toPath": "/nix/store/85n2zd2m8jr3d82m7k6a256zbw9kcvbv-cardano-wallet-2022.12.14", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-wallet-2022.12.14", "system": "x86_64-linux" }, - "github:cardano-foundation/cardano-wallet/ef1d2b2a8923c0f746aace0a8dc61f114bc044ed#packages.x86_64-linux.cardano-address": { - "org": "cardano-foundation", - "repo": "cardano-wallet", - "tag": "3.12.0", - "rev": "ef1d2b2a8923c0f746aace0a8dc61f114bc044ed", + "github:cardano-foundation/cardano-wallet/9a072f90b8c52a7e25012269b21e2ddd8be28a74#packages.x86_64-linux.cardano-address": { + "name": "github:cardano-foundation/cardano-wallet/${tag}#packages.${system}.cardano-address", + "version": "3.12.0", + "commit": "9a072f90b8c52a7e25012269b21e2ddd8be28a74", + "org_name": "cardano-foundation", + "repo_name": "cardano-wallet", "meta": { "available": true, "broken": false, @@ -587,18 +606,21 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/0drbk8hrf5dgivw39dk6lhn6a2pg8l59-cardano-addresses-cli-exe-cardano-address-3.12.0", "closure": { - "fromPath": "/nix/store/l24lzdr7j17g6mcndncqsjvrjh0bv99r-cardano-addresses-cli-exe-cardano-address-3.12.0", - "toPath": "/nix/store/7w25xhqs47hm962vkra5apghsfavsdfw-cardano-addresses-cli-exe-cardano-address-3.12.0", + "fromPath": "/nix/store/0drbk8hrf5dgivw39dk6lhn6a2pg8l59-cardano-addresses-cli-exe-cardano-address-3.12.0", + "toPath": "/nix/store/y92dgwhgafhx4a9s57niagqnsn46j87y-cardano-addresses-cli-exe-cardano-address-3.12.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-addresses-cli-exe-cardano-address", "system": "x86_64-linux" }, - "github:cardano-foundation/cardano-wallet/8ff4882288d913defe130011e34860c3522ba947#packages.x86_64-linux.cardano-address": { - "org": "cardano-foundation", - "repo": "cardano-wallet", - "tag": "3.12.0", - "rev": "8ff4882288d913defe130011e34860c3522ba947", + "github:cardano-foundation/cardano-wallet/aee7e5373c956bd771390e9b5e7616eb39290c76#packages.x86_64-linux.cardano-address": { + "name": "github:cardano-foundation/cardano-wallet/${tag}#packages.${system}.cardano-address", + "version": "3.10.0", + "commit": "aee7e5373c956bd771390e9b5e7616eb39290c76", + "org_name": "cardano-foundation", + "repo_name": "cardano-wallet", "meta": { "available": true, "broken": false, @@ -614,8 +636,7 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "cardano-address", - "name": "cardano-addresses-cli-exe-cardano-address-3.12.0", + "name": "cardano-addresses-cli-exe-cardano-address-3.10.0", "outputsToInstall": [ "out" ], @@ -640,10 +661,7 @@ "armv7l-linux", "i686-linux", "m68k-linux", - "microblaze-linux", - "microblazeel-linux", "mipsel-linux", - "mips64el-linux", "powerpc64-linux", "powerpc64le-linux", "riscv32-linux", @@ -663,22 +681,17 @@ "riscv32-netbsd", "riscv64-netbsd", "x86_64-netbsd", - "aarch64_be-none", "aarch64-none", "arm-none", "armv6l-none", "avr-none", "i686-none", - "microblaze-none", - "microblazeel-none", "msp430-none", "or1k-none", "m68k-none", "powerpc-none", - "powerpcle-none", "riscv32-none", "riscv64-none", - "rx-none", "s390-none", "s390x-none", "vc4-none", @@ -691,27 +704,42 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/9dc5n7i7s0vrx9fhhp4s79rsiki5gdmc-source/builder/comp-builder.nix:365", + "position": "/nix/store/kvzmrz9wcp79bb23k2xz15cwp4dacfss-source/builder/comp-builder.nix:339", "unfree": false, "unsupported": false }, + "output": "/nix/store/0svzvzhlkxl20vngkva2j2ckxz109mvs-cardano-addresses-cli-exe-cardano-address-3.10.0", "closure": { - "fromPath": "/nix/store/ag7kd9iqn047nip9n616vm03ax80vgkf-cardano-addresses-cli-exe-cardano-address-3.12.0", - "toPath": "/nix/store/19iih7ipz1lvpbsnrxbq6ci7myh35s7n-cardano-addresses-cli-exe-cardano-address-3.12.0", + "fromPath": "/nix/store/0svzvzhlkxl20vngkva2j2ckxz109mvs-cardano-addresses-cli-exe-cardano-address-3.10.0", + "toPath": "/nix/store/ai7pn8q16wf36w6rbqdgidkah17lxdfr-cardano-addresses-cli-exe-cardano-address-3.10.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-addresses-cli-exe-cardano-address", "system": "x86_64-linux" }, - "github:cardano-foundation/cardano-wallet/8ff4882288d913defe130011e34860c3522ba947#packages.x86_64-linux.cardano-wallet": { - "org": "cardano-foundation", - "repo": "cardano-wallet", - "tag": "2022.12.14", - "rev": "8ff4882288d913defe130011e34860c3522ba947", + "github:cardano-foundation/cardano-wallet/b717b361afa3ade78192c5280679bfb9c53461f2#packages.x86_64-linux.cardano-address": { + "name": "github:cardano-foundation/cardano-wallet/${tag}#packages.${system}.cardano-address", + "version": "3.12.0", + "commit": "b717b361afa3ade78192c5280679bfb9c53461f2", + "org_name": "cardano-foundation", + "repo_name": "cardano-wallet", "meta": { "available": true, "broken": false, + "description": "Utils for constructing a command-line on top of cardano-addresses.", + "homepage": "https://github.com/input-output-hk/cardano-addresses#readme", "insecure": false, - "name": "cardano-wallet-2022.12.14", + "license": [ + { + "free": true, + "fullName": "Apache License 2.0", + "shortName": "Apache-2.0", + "spdxId": "Apache-2.0", + "url": "https://spdx.org/licenses/Apache-2.0.html" + } + ], + "mainProgram": "cardano-address", + "name": "cardano-addresses-cli-exe-cardano-address-3.12.0", "outputsToInstall": [ "out" ], @@ -722,8 +750,8 @@ "i686-darwin", "aarch64-darwin", "armv7a-darwin", - "i686-freebsd", - "x86_64-freebsd", + "i686-freebsd13", + "x86_64-freebsd13", "aarch64-genode", "i686-genode", "x86_64-genode", @@ -787,22 +815,25 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/7x2izzhgad75lqh4pmci7p2nrcg4lw4r-source/nix/release-build.nix:15", + "position": "/nix/store/fis1icjabij3y7fpxssijwyxnwbgdqyl-source/builder/comp-builder.nix:362", "unfree": false, "unsupported": false }, + "output": "/nix/store/a76jxrvcxvsx01h5faszsb1cg9pm9hp4-cardano-addresses-cli-exe-cardano-address-3.12.0", "closure": { - "fromPath": "/nix/store/sjl8ri42k29bsvzn8vb2dvn9n485c1i3-cardano-wallet-2022.12.14", - "toPath": "/nix/store/85n2zd2m8jr3d82m7k6a256zbw9kcvbv-cardano-wallet-2022.12.14", + "fromPath": "/nix/store/a76jxrvcxvsx01h5faszsb1cg9pm9hp4-cardano-addresses-cli-exe-cardano-address-3.12.0", + "toPath": "/nix/store/a8a3zfyd8v569wnmc9n2z8c13lklj7c7-cardano-addresses-cli-exe-cardano-address-3.12.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-addresses-cli-exe-cardano-address", "system": "x86_64-linux" }, - "github:cardano-foundation/cardano-wallet/b717b361afa3ade78192c5280679bfb9c53461f2#packages.x86_64-linux.cardano-address": { - "org": "cardano-foundation", - "repo": "cardano-wallet", - "tag": "3.12.0", - "rev": "b717b361afa3ade78192c5280679bfb9c53461f2", + "github:cardano-foundation/cardano-wallet/c565a835a532bd2e0a65a0d5dc0d7563c35bdcc1#packages.x86_64-linux.cardano-address": { + "name": "github:cardano-foundation/cardano-wallet/${tag}#packages.${system}.cardano-address", + "version": "3.12.0", + "commit": "c565a835a532bd2e0a65a0d5dc0d7563c35bdcc1", + "org_name": "cardano-foundation", + "repo_name": "cardano-wallet", "meta": { "available": true, "broken": false, @@ -836,13 +867,14 @@ "i686-genode", "x86_64-genode", "x86_64-solaris", - "js-ghcjs", + "javascript-ghcjs", "aarch64-linux", "armv5tel-linux", "armv6l-linux", "armv7a-linux", "armv7l-linux", "i686-linux", + "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -895,39 +927,30 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/fis1icjabij3y7fpxssijwyxnwbgdqyl-source/builder/comp-builder.nix:362", + "position": "/nix/store/i59z7pknhv6dqxs0g7bqsqm8vb3hxfas-source/builder/comp-builder.nix:375", "unfree": false, "unsupported": false }, + "output": "/nix/store/k0i6k4lp8q3rc0i92k9sxmwc303cyj5k-cardano-addresses-cli-exe-cardano-address-3.12.0", "closure": { - "fromPath": "/nix/store/a76jxrvcxvsx01h5faszsb1cg9pm9hp4-cardano-addresses-cli-exe-cardano-address-3.12.0", - "toPath": "/nix/store/a8a3zfyd8v569wnmc9n2z8c13lklj7c7-cardano-addresses-cli-exe-cardano-address-3.12.0", + "fromPath": "/nix/store/k0i6k4lp8q3rc0i92k9sxmwc303cyj5k-cardano-addresses-cli-exe-cardano-address-3.12.0", + "toPath": "/nix/store/s5m8fy2gazbdrcxy6wqzx6cf5q6h75vj-cardano-addresses-cli-exe-cardano-address-3.12.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-addresses-cli-exe-cardano-address", "system": "x86_64-linux" }, - "github:cardano-foundation/cardano-wallet/c565a835a532bd2e0a65a0d5dc0d7563c35bdcc1#packages.x86_64-linux.cardano-address": { - "org": "cardano-foundation", - "repo": "cardano-wallet", - "tag": "3.12.0", - "rev": "c565a835a532bd2e0a65a0d5dc0d7563c35bdcc1", + "github:cardano-foundation/cardano-wallet/c565a835a532bd2e0a65a0d5dc0d7563c35bdcc1#packages.x86_64-linux.cardano-wallet": { + "name": "github:cardano-foundation/cardano-wallet/${tag}#packages.${system}.cardano-wallet", + "version": "2023.7.18", + "commit": "c565a835a532bd2e0a65a0d5dc0d7563c35bdcc1", + "org_name": "cardano-foundation", + "repo_name": "cardano-wallet", "meta": { "available": true, "broken": false, - "description": "Utils for constructing a command-line on top of cardano-addresses.", - "homepage": "https://github.com/input-output-hk/cardano-addresses#readme", "insecure": false, - "license": [ - { - "free": true, - "fullName": "Apache License 2.0", - "shortName": "Apache-2.0", - "spdxId": "Apache-2.0", - "url": "https://spdx.org/licenses/Apache-2.0.html" - } - ], - "mainProgram": "cardano-address", - "name": "cardano-addresses-cli-exe-cardano-address-3.12.0", + "name": "cardano-wallet-2023.7.18", "outputsToInstall": [ "out" ], @@ -1004,27 +1027,41 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/i59z7pknhv6dqxs0g7bqsqm8vb3hxfas-source/builder/comp-builder.nix:375", + "position": "/nix/store/j5ns4crrr7ybss6jrc1pba7xf96d1j0l-source/nix/release-build.nix:15", "unfree": false, "unsupported": false }, + "output": "/nix/store/4gj3167qd4zq2jwjjjac8c0hb8hjh8fq-cardano-wallet-2023.7.18", "closure": { - "fromPath": "/nix/store/k0i6k4lp8q3rc0i92k9sxmwc303cyj5k-cardano-addresses-cli-exe-cardano-address-3.12.0", - "toPath": "/nix/store/s5m8fy2gazbdrcxy6wqzx6cf5q6h75vj-cardano-addresses-cli-exe-cardano-address-3.12.0", + "fromPath": "/nix/store/4gj3167qd4zq2jwjjjac8c0hb8hjh8fq-cardano-wallet-2023.7.18", + "toPath": "/nix/store/rmaja5dagsy0vl1qs7x7ivj7x49x6p4p-cardano-wallet-2023.7.18", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-wallet-2023.7.18", "system": "x86_64-linux" }, - "github:cardano-foundation/cardano-wallet/c565a835a532bd2e0a65a0d5dc0d7563c35bdcc1#packages.x86_64-linux.cardano-wallet": { - "org": "cardano-foundation", - "repo": "cardano-wallet", - "tag": "2023.7.18", - "rev": "c565a835a532bd2e0a65a0d5dc0d7563c35bdcc1", + "github:cardano-foundation/cardano-wallet/ef1d2b2a8923c0f746aace0a8dc61f114bc044ed#packages.x86_64-linux.cardano-address": { + "name": "github:cardano-foundation/cardano-wallet/${tag}#packages.${system}.cardano-address", + "version": "3.12.0", + "commit": "ef1d2b2a8923c0f746aace0a8dc61f114bc044ed", + "org_name": "cardano-foundation", + "repo_name": "cardano-wallet", "meta": { "available": true, "broken": false, + "description": "Utils for constructing a command-line on top of cardano-addresses.", + "homepage": "https://github.com/input-output-hk/cardano-addresses#readme", "insecure": false, - "name": "cardano-wallet-2023.7.18", + "license": [ + { + "free": true, + "fullName": "Apache License 2.0", + "shortName": "Apache-2.0", + "spdxId": "Apache-2.0", + "url": "https://spdx.org/licenses/Apache-2.0.html" + } + ], + "name": "cardano-addresses-cli-exe-cardano-address-3.12.0", "outputsToInstall": [ "out" ], @@ -1035,23 +1072,20 @@ "i686-darwin", "aarch64-darwin", "armv7a-darwin", - "i686-freebsd13", - "x86_64-freebsd13", + "i686-freebsd", + "x86_64-freebsd", "aarch64-genode", "i686-genode", "x86_64-genode", "x86_64-solaris", - "javascript-ghcjs", + "js-ghcjs", "aarch64-linux", "armv5tel-linux", "armv6l-linux", "armv7a-linux", "armv7l-linux", "i686-linux", - "loongarch64-linux", "m68k-linux", - "microblaze-linux", - "microblazeel-linux", "mipsel-linux", "mips64el-linux", "powerpc64-linux", @@ -1079,8 +1113,6 @@ "armv6l-none", "avr-none", "i686-none", - "microblaze-none", - "microblazeel-none", "msp430-none", "or1k-none", "m68k-none", @@ -1088,7 +1120,6 @@ "powerpcle-none", "riscv32-none", "riscv64-none", - "rx-none", "s390-none", "s390x-none", "vc4-none", @@ -1101,22 +1132,25 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/j5ns4crrr7ybss6jrc1pba7xf96d1j0l-source/nix/release-build.nix:15", + "position": "/nix/store/xbj4lqck18yww2bkpzdsia0xliawa9zn-source/builder/comp-builder.nix:349", "unfree": false, "unsupported": false }, + "output": "/nix/store/l24lzdr7j17g6mcndncqsjvrjh0bv99r-cardano-addresses-cli-exe-cardano-address-3.12.0", "closure": { - "fromPath": "/nix/store/4gj3167qd4zq2jwjjjac8c0hb8hjh8fq-cardano-wallet-2023.7.18", - "toPath": "/nix/store/rmaja5dagsy0vl1qs7x7ivj7x49x6p4p-cardano-wallet-2023.7.18", + "fromPath": "/nix/store/l24lzdr7j17g6mcndncqsjvrjh0bv99r-cardano-addresses-cli-exe-cardano-address-3.12.0", + "toPath": "/nix/store/7w25xhqs47hm962vkra5apghsfavsdfw-cardano-addresses-cli-exe-cardano-address-3.12.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-addresses-cli-exe-cardano-address", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-cli/82897fc3ab538731daafbfadf5235ba067422fc4#packages.x86_64-linux.\"cardano-cli:exe:cardano-cli\"": { - "org": "input-output-hk", - "repo": "cardano-cli", - "tag": "8.3.4.0", - "rev": "82897fc3ab538731daafbfadf5235ba067422fc4", + "github:input-output-hk/cardano-cli/59d9717b010340837bcf1d5eb6b678d6ba5df36f#packages.x86_64-linux.\"cardano-cli:exe:cardano-cli\"": { + "name": "github:input-output-hk/cardano-cli/${tag}#packages.${system}.\"cardano-cli:exe:cardano-cli\"", + "version": "8.7.0.0", + "commit": "59d9717b010340837bcf1d5eb6b678d6ba5df36f", + "org_name": "input-output-hk", + "repo_name": "cardano-cli", "meta": { "available": true, "broken": false, @@ -1133,7 +1167,7 @@ } ], "mainProgram": "cardano-cli", - "name": "cardano-cli-exe-cardano-cli-8.3.4.0", + "name": "cardano-cli-exe-cardano-cli-8.7.0.0", "outputsToInstall": [ "out" ], @@ -1161,8 +1195,10 @@ "m68k-linux", "microblaze-linux", "microblazeel-linux", - "mipsel-linux", + "mips-linux", + "mips64-linux", "mips64el-linux", + "mipsel-linux", "powerpc64-linux", "powerpc64le-linux", "riscv32-linux", @@ -1190,6 +1226,8 @@ "i686-none", "microblaze-none", "microblazeel-none", + "mips-none", + "mips64-none", "msp430-none", "or1k-none", "m68k-none", @@ -1210,22 +1248,25 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/0yxq9xx0b9f23g2abphl3b9vc49zy4g2-source/builder/comp-builder.nix:378", + "position": "/nix/store/sr5ii0249bv4wn7fy4cwr2g4yq1vqq0p-source/builder/comp-builder.nix:376", "unfree": false, "unsupported": false }, + "output": "/nix/store/7zzwqywcjpdagj4gf1fgmsx6cvspchnp-cardano-cli-exe-cardano-cli-8.7.0.0", "closure": { - "fromPath": "/nix/store/pn1c3w0d4qmhhm2i51ki7gq7li9272qa-cardano-cli-exe-cardano-cli-8.3.4.0", - "toPath": "/nix/store/09kpllgi0lzd08y4drdq9av81hnhwqk0-cardano-cli-exe-cardano-cli-8.3.4.0", + "fromPath": "/nix/store/7zzwqywcjpdagj4gf1fgmsx6cvspchnp-cardano-cli-exe-cardano-cli-8.7.0.0", + "toPath": "/nix/store/jxlvp7dzww2r958nig1wmhacs71xx7bi-cardano-cli-exe-cardano-cli-8.7.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-cli-exe-cardano-cli", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-cli/f5e4259569d705d13e05b9c2e17224d4dc301be0#packages.x86_64-linux.\"cardano-cli:exe:cardano-cli\"": { - "org": "input-output-hk", - "repo": "cardano-cli", - "tag": "8.4.0.0", - "rev": "f5e4259569d705d13e05b9c2e17224d4dc301be0", + "github:input-output-hk/cardano-cli/79264057deda984ca955c36e56c15a5c28e9307a#packages.x86_64-linux.\"cardano-cli:exe:cardano-cli\"": { + "name": "github:input-output-hk/cardano-cli/${tag}#packages.${system}.\"cardano-cli:exe:cardano-cli\"", + "version": "8.9.0.0", + "commit": "79264057deda984ca955c36e56c15a5c28e9307a", + "org_name": "input-output-hk", + "repo_name": "cardano-cli", "meta": { "available": true, "broken": false, @@ -1242,7 +1283,7 @@ } ], "mainProgram": "cardano-cli", - "name": "cardano-cli-exe-cardano-cli-8.4.0.0", + "name": "cardano-cli-exe-cardano-cli-8.9.0.0", "outputsToInstall": [ "out" ], @@ -1270,8 +1311,10 @@ "m68k-linux", "microblaze-linux", "microblazeel-linux", - "mipsel-linux", + "mips-linux", + "mips64-linux", "mips64el-linux", + "mipsel-linux", "powerpc64-linux", "powerpc64le-linux", "riscv32-linux", @@ -1299,6 +1342,8 @@ "i686-none", "microblaze-none", "microblazeel-none", + "mips-none", + "mips64-none", "msp430-none", "or1k-none", "m68k-none", @@ -1319,22 +1364,25 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/0yxq9xx0b9f23g2abphl3b9vc49zy4g2-source/builder/comp-builder.nix:378", + "position": "/nix/store/bdkxqq0n6h0jqxkxzhdnj9dccwvlw6cz-source/builder/comp-builder.nix:389", "unfree": false, "unsupported": false }, + "output": "/nix/store/hhfyvsxgxxk4jh1c4p5dilxi5fvfay18-cardano-cli-exe-cardano-cli-8.9.0.0", "closure": { - "fromPath": "/nix/store/3bg5g7k1hfp0xjz09sdlm31kvibqbnzn-cardano-cli-exe-cardano-cli-8.4.0.0", - "toPath": "/nix/store/ldqavxg0s7bz6gnl4i5x9xhb5w47lgw1-cardano-cli-exe-cardano-cli-8.4.0.0", + "fromPath": "/nix/store/hhfyvsxgxxk4jh1c4p5dilxi5fvfay18-cardano-cli-exe-cardano-cli-8.9.0.0", + "toPath": "/nix/store/d89i46351px453mk0vk5v5g46diqxs7n-cardano-cli-exe-cardano-cli-8.9.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-cli-exe-cardano-cli", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-cli/b2bb5da397077e63badc1d093105cd72db2f3d16#packages.x86_64-linux.\"cardano-cli:exe:cardano-cli\"": { - "org": "input-output-hk", - "repo": "cardano-cli", - "tag": "8.4.1.0", - "rev": "b2bb5da397077e63badc1d093105cd72db2f3d16", + "github:input-output-hk/cardano-cli/82897fc3ab538731daafbfadf5235ba067422fc4#packages.x86_64-linux.\"cardano-cli:exe:cardano-cli\"": { + "name": "github:input-output-hk/cardano-cli/${tag}#packages.${system}.\"cardano-cli:exe:cardano-cli\"", + "version": "8.3.4.0", + "commit": "82897fc3ab538731daafbfadf5235ba067422fc4", + "org_name": "input-output-hk", + "repo_name": "cardano-cli", "meta": { "available": true, "broken": false, @@ -1351,7 +1399,7 @@ } ], "mainProgram": "cardano-cli", - "name": "cardano-cli-exe-cardano-cli-8.4.1.0", + "name": "cardano-cli-exe-cardano-cli-8.3.4.0", "outputsToInstall": [ "out" ], @@ -1432,18 +1480,21 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/pn1c3w0d4qmhhm2i51ki7gq7li9272qa-cardano-cli-exe-cardano-cli-8.3.4.0", "closure": { - "fromPath": "/nix/store/897b8wazb6szwp2q0z0ykjr49m1xpfk6-cardano-cli-exe-cardano-cli-8.4.1.0", - "toPath": "/nix/store/bxgjfc2pv9agx33xpz49grrgpc47gj39-cardano-cli-exe-cardano-cli-8.4.1.0", + "fromPath": "/nix/store/pn1c3w0d4qmhhm2i51ki7gq7li9272qa-cardano-cli-exe-cardano-cli-8.3.4.0", + "toPath": "/nix/store/09kpllgi0lzd08y4drdq9av81hnhwqk0-cardano-cli-exe-cardano-cli-8.3.4.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-cli-exe-cardano-cli", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-cli/e198717d59768cee7a0283d2dc4b673f943576d7#packages.x86_64-linux.\"cardano-cli:exe:cardano-cli\"": { - "org": "input-output-hk", - "repo": "cardano-cli", - "tag": "8.6.0.0", - "rev": "e198717d59768cee7a0283d2dc4b673f943576d7", + "github:input-output-hk/cardano-cli/a38c1c6db06f65fdb95271e7549c97960fcabc74#packages.x86_64-linux.\"cardano-cli:exe:cardano-cli\"": { + "name": "github:input-output-hk/cardano-cli/${tag}#packages.${system}.\"cardano-cli:exe:cardano-cli\"", + "version": "8.8.0.0", + "commit": "a38c1c6db06f65fdb95271e7549c97960fcabc74", + "org_name": "input-output-hk", + "repo_name": "cardano-cli", "meta": { "available": true, "broken": false, @@ -1460,7 +1511,7 @@ } ], "mainProgram": "cardano-cli", - "name": "cardano-cli-exe-cardano-cli-8.6.0.0", + "name": "cardano-cli-exe-cardano-cli-8.8.0.0", "outputsToInstall": [ "out" ], @@ -1541,22 +1592,25 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/qrmaih6qffz0qim8r171iglq40lci0n4-source/builder/comp-builder.nix:376", + "position": "/nix/store/592gb6fsyimknv1vrcqhf7ah2qq76ifn-source/builder/comp-builder.nix:376", "unfree": false, "unsupported": false }, + "output": "/nix/store/zlfwyy227wd55hkg0hblhvzyj15g0asf-cardano-cli-exe-cardano-cli-8.8.0.0", "closure": { - "fromPath": "/nix/store/q9vddks9gg42f7fbs5gvh3vy9cqjlas4-cardano-cli-exe-cardano-cli-8.6.0.0", - "toPath": "/nix/store/33nk6ydqyq04j1jcimh4fk8cfb4zy2cb-cardano-cli-exe-cardano-cli-8.6.0.0", + "fromPath": "/nix/store/zlfwyy227wd55hkg0hblhvzyj15g0asf-cardano-cli-exe-cardano-cli-8.8.0.0", + "toPath": "/nix/store/qh3xvmdr0x136254jk2r57qfn065wilv-cardano-cli-exe-cardano-cli-8.8.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-cli-exe-cardano-cli", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-cli/59d9717b010340837bcf1d5eb6b678d6ba5df36f#packages.x86_64-linux.\"cardano-cli:exe:cardano-cli\"": { - "org": "input-output-hk", - "repo": "cardano-cli", - "tag": "8.7.0.0", - "rev": "59d9717b010340837bcf1d5eb6b678d6ba5df36f", + "github:input-output-hk/cardano-cli/b2bb5da397077e63badc1d093105cd72db2f3d16#packages.x86_64-linux.\"cardano-cli:exe:cardano-cli\"": { + "name": "github:input-output-hk/cardano-cli/${tag}#packages.${system}.\"cardano-cli:exe:cardano-cli\"", + "version": "8.4.1.0", + "commit": "b2bb5da397077e63badc1d093105cd72db2f3d16", + "org_name": "input-output-hk", + "repo_name": "cardano-cli", "meta": { "available": true, "broken": false, @@ -1573,7 +1627,7 @@ } ], "mainProgram": "cardano-cli", - "name": "cardano-cli-exe-cardano-cli-8.7.0.0", + "name": "cardano-cli-exe-cardano-cli-8.4.1.0", "outputsToInstall": [ "out" ], @@ -1601,10 +1655,8 @@ "m68k-linux", "microblaze-linux", "microblazeel-linux", - "mips-linux", - "mips64-linux", - "mips64el-linux", "mipsel-linux", + "mips64el-linux", "powerpc64-linux", "powerpc64le-linux", "riscv32-linux", @@ -1632,8 +1684,6 @@ "i686-none", "microblaze-none", "microblazeel-none", - "mips-none", - "mips64-none", "msp430-none", "or1k-none", "m68k-none", @@ -1654,22 +1704,25 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/sr5ii0249bv4wn7fy4cwr2g4yq1vqq0p-source/builder/comp-builder.nix:376", + "position": "/nix/store/0yxq9xx0b9f23g2abphl3b9vc49zy4g2-source/builder/comp-builder.nix:378", "unfree": false, "unsupported": false }, + "output": "/nix/store/897b8wazb6szwp2q0z0ykjr49m1xpfk6-cardano-cli-exe-cardano-cli-8.4.1.0", "closure": { - "fromPath": "/nix/store/7zzwqywcjpdagj4gf1fgmsx6cvspchnp-cardano-cli-exe-cardano-cli-8.7.0.0", - "toPath": "/nix/store/jxlvp7dzww2r958nig1wmhacs71xx7bi-cardano-cli-exe-cardano-cli-8.7.0.0", + "fromPath": "/nix/store/897b8wazb6szwp2q0z0ykjr49m1xpfk6-cardano-cli-exe-cardano-cli-8.4.1.0", + "toPath": "/nix/store/bxgjfc2pv9agx33xpz49grrgpc47gj39-cardano-cli-exe-cardano-cli-8.4.1.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-cli-exe-cardano-cli", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-cli/a38c1c6db06f65fdb95271e7549c97960fcabc74#packages.x86_64-linux.\"cardano-cli:exe:cardano-cli\"": { - "org": "input-output-hk", - "repo": "cardano-cli", - "tag": "8.8.0.0", - "rev": "a38c1c6db06f65fdb95271e7549c97960fcabc74", + "github:input-output-hk/cardano-cli/e198717d59768cee7a0283d2dc4b673f943576d7#packages.x86_64-linux.\"cardano-cli:exe:cardano-cli\"": { + "name": "github:input-output-hk/cardano-cli/${tag}#packages.${system}.\"cardano-cli:exe:cardano-cli\"", + "version": "8.6.0.0", + "commit": "e198717d59768cee7a0283d2dc4b673f943576d7", + "org_name": "input-output-hk", + "repo_name": "cardano-cli", "meta": { "available": true, "broken": false, @@ -1686,7 +1739,7 @@ } ], "mainProgram": "cardano-cli", - "name": "cardano-cli-exe-cardano-cli-8.8.0.0", + "name": "cardano-cli-exe-cardano-cli-8.6.0.0", "outputsToInstall": [ "out" ], @@ -1767,22 +1820,25 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/592gb6fsyimknv1vrcqhf7ah2qq76ifn-source/builder/comp-builder.nix:376", + "position": "/nix/store/qrmaih6qffz0qim8r171iglq40lci0n4-source/builder/comp-builder.nix:376", "unfree": false, "unsupported": false }, + "output": "/nix/store/q9vddks9gg42f7fbs5gvh3vy9cqjlas4-cardano-cli-exe-cardano-cli-8.6.0.0", "closure": { - "fromPath": "/nix/store/zlfwyy227wd55hkg0hblhvzyj15g0asf-cardano-cli-exe-cardano-cli-8.8.0.0", - "toPath": "/nix/store/qh3xvmdr0x136254jk2r57qfn065wilv-cardano-cli-exe-cardano-cli-8.8.0.0", + "fromPath": "/nix/store/q9vddks9gg42f7fbs5gvh3vy9cqjlas4-cardano-cli-exe-cardano-cli-8.6.0.0", + "toPath": "/nix/store/33nk6ydqyq04j1jcimh4fk8cfb4zy2cb-cardano-cli-exe-cardano-cli-8.6.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-cli-exe-cardano-cli", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-cli/79264057deda984ca955c36e56c15a5c28e9307a#packages.x86_64-linux.\"cardano-cli:exe:cardano-cli\"": { - "org": "input-output-hk", - "repo": "cardano-cli", - "tag": "8.9.0.0", - "rev": "79264057deda984ca955c36e56c15a5c28e9307a", + "github:input-output-hk/cardano-cli/f5e4259569d705d13e05b9c2e17224d4dc301be0#packages.x86_64-linux.\"cardano-cli:exe:cardano-cli\"": { + "name": "github:input-output-hk/cardano-cli/${tag}#packages.${system}.\"cardano-cli:exe:cardano-cli\"", + "version": "8.4.0.0", + "commit": "f5e4259569d705d13e05b9c2e17224d4dc301be0", + "org_name": "input-output-hk", + "repo_name": "cardano-cli", "meta": { "available": true, "broken": false, @@ -1799,7 +1855,7 @@ } ], "mainProgram": "cardano-cli", - "name": "cardano-cli-exe-cardano-cli-8.9.0.0", + "name": "cardano-cli-exe-cardano-cli-8.4.0.0", "outputsToInstall": [ "out" ], @@ -1827,10 +1883,8 @@ "m68k-linux", "microblaze-linux", "microblazeel-linux", - "mips-linux", - "mips64-linux", - "mips64el-linux", "mipsel-linux", + "mips64el-linux", "powerpc64-linux", "powerpc64le-linux", "riscv32-linux", @@ -1858,8 +1912,6 @@ "i686-none", "microblaze-none", "microblazeel-none", - "mips-none", - "mips64-none", "msp430-none", "or1k-none", "m68k-none", @@ -1880,22 +1932,25 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/bdkxqq0n6h0jqxkxzhdnj9dccwvlw6cz-source/builder/comp-builder.nix:389", + "position": "/nix/store/0yxq9xx0b9f23g2abphl3b9vc49zy4g2-source/builder/comp-builder.nix:378", "unfree": false, "unsupported": false }, + "output": "/nix/store/3bg5g7k1hfp0xjz09sdlm31kvibqbnzn-cardano-cli-exe-cardano-cli-8.4.0.0", "closure": { - "fromPath": "/nix/store/hhfyvsxgxxk4jh1c4p5dilxi5fvfay18-cardano-cli-exe-cardano-cli-8.9.0.0", - "toPath": "/nix/store/d89i46351px453mk0vk5v5g46diqxs7n-cardano-cli-exe-cardano-cli-8.9.0.0", + "fromPath": "/nix/store/3bg5g7k1hfp0xjz09sdlm31kvibqbnzn-cardano-cli-exe-cardano-cli-8.4.0.0", + "toPath": "/nix/store/ldqavxg0s7bz6gnl4i5x9xhb5w47lgw1-cardano-cli-exe-cardano-cli-8.4.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-cli-exe-cardano-cli", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-db-sync/935e1fe5d5d11d694e9b6c54030a592b85742671#packages.x86_64-linux.cardano-db-sync": { - "org": "input-output-hk", - "repo": "cardano-db-sync", - "tag": "12.0.2", - "rev": "935e1fe5d5d11d694e9b6c54030a592b85742671", + "github:input-output-hk/cardano-db-sync/5eff9a0df135f903a803762d54bde5882aefa42e#packages.x86_64-linux.cardano-db-sync": { + "name": "github:input-output-hk/cardano-db-sync/${tag}#packages.${system}.cardano-db-sync", + "version": "10.0.0", + "commit": "5eff9a0df135f903a803762d54bde5882aefa42e", + "org_name": "input-output-hk", + "repo_name": "cardano-db-sync", "meta": { "available": true, "broken": false, @@ -1908,86 +1963,81 @@ "fullName": "Apache License 2.0", "shortName": "Apache-2.0", "spdxId": "Apache-2.0", - "url": "./Apache-2.0.html" + "url": "http://spdx.org/licenses/Apache-2.0.html" } ], - "name": "cardano-db-sync-exe-cardano-db-sync-12.0.2", + "name": "cardano-db-sync-exe-cardano-db-sync-10.0.0", "outputsToInstall": [ "out" ], "platforms": [ - "i686-cygwin", - "x86_64-cygwin", - "x86_64-darwin", - "i686-darwin", - "aarch64-darwin", - "armv7a-darwin", - "i686-freebsd", - "x86_64-freebsd", - "aarch64-genode", - "i686-genode", - "x86_64-genode", - "x86_64-solaris", - "js-ghcjs", "aarch64-linux", "armv5tel-linux", "armv6l-linux", "armv7a-linux", "armv7l-linux", - "i686-linux", "mipsel-linux", + "i686-cygwin", + "i686-freebsd", + "i686-linux", + "i686-netbsd", + "i686-openbsd", + "x86_64-cygwin", + "x86_64-freebsd", + "x86_64-linux", + "x86_64-netbsd", + "x86_64-openbsd", + "x86_64-solaris", + "x86_64-darwin", + "i686-darwin", + "aarch64-darwin", + "armv7a-darwin", + "x86_64-windows", + "i686-windows", + "wasm64-wasi", + "wasm32-wasi", + "x86_64-redox", "powerpc64-linux", "powerpc64le-linux", "riscv32-linux", "riscv64-linux", - "x86_64-linux", - "mmix-mmixware", - "aarch64-netbsd", - "armv6l-netbsd", - "armv7a-netbsd", - "armv7l-netbsd", - "i686-netbsd", - "mipsel-netbsd", - "powerpc-netbsd", - "riscv32-netbsd", - "riscv64-netbsd", - "x86_64-netbsd", - "aarch64-none", "arm-none", "armv6l-none", + "aarch64-none", "avr-none", "i686-none", - "msp430-none", - "or1k-none", + "x86_64-none", "powerpc-none", - "riscv32-none", + "msp430-none", "riscv64-none", + "riscv32-none", "vc4-none", - "x86_64-none", - "i686-openbsd", - "x86_64-openbsd", - "x86_64-redox", - "wasm64-wasi", - "wasm32-wasi", - "x86_64-windows", - "i686-windows" + "or1k-none", + "mmix-mmixware", + "js-ghcjs", + "aarch64-genode", + "i686-genode", + "x86_64-genode" ], - "position": "/nix/store/i369k44ks1r4pwd7znr2pqvncx2nl06z-source/builder/comp-builder.nix:337", + "position": "/nix/store/p1zdilb333xwwm2gwiib7nha1s9db3rf-source/builder/comp-builder.nix:328", "unfree": false, "unsupported": false }, + "output": "/nix/store/jab7102qc8rn77f9l7ncjlc0j47l18zw-cardano-db-sync-exe-cardano-db-sync-10.0.0", "closure": { - "fromPath": "/nix/store/69xvpi0vgniwq3cszn47jz22h6d8gc48-cardano-db-sync-exe-cardano-db-sync-12.0.2", - "toPath": "/nix/store/243x229dkx6hykn1x69salz3s76s46f7-cardano-db-sync-exe-cardano-db-sync-12.0.2", + "fromPath": "/nix/store/jab7102qc8rn77f9l7ncjlc0j47l18zw-cardano-db-sync-exe-cardano-db-sync-10.0.0", + "toPath": "/nix/store/x0xvnqsqwlg1vi85428nfm7vwi7f1xb5-cardano-db-sync-exe-cardano-db-sync-10.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-db-sync-exe-cardano-db-sync", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-db-sync/935e1fe5d5d11d694e9b6c54030a592b85742671#packages.x86_64-linux.cardano-db-tool": { - "org": "input-output-hk", - "repo": "cardano-db-sync", - "tag": "12.0.2", - "rev": "935e1fe5d5d11d694e9b6c54030a592b85742671", + "github:input-output-hk/cardano-db-sync/5eff9a0df135f903a803762d54bde5882aefa42e#packages.x86_64-linux.cardano-db-tool": { + "name": "github:input-output-hk/cardano-db-sync/${tag}#packages.${system}.cardano-db-tool", + "version": "10.0.0", + "commit": "5eff9a0df135f903a803762d54bde5882aefa42e", + "org_name": "input-output-hk", + "repo_name": "cardano-db-sync", "meta": { "available": true, "broken": false, @@ -2000,86 +2050,81 @@ "fullName": "Apache License 2.0", "shortName": "Apache-2.0", "spdxId": "Apache-2.0", - "url": "./Apache-2.0.html" + "url": "http://spdx.org/licenses/Apache-2.0.html" } ], - "name": "cardano-db-tool-exe-cardano-db-tool-12.0.2", + "name": "cardano-db-tool-exe-cardano-db-tool-10.0.0", "outputsToInstall": [ "out" ], "platforms": [ - "i686-cygwin", - "x86_64-cygwin", - "x86_64-darwin", - "i686-darwin", - "aarch64-darwin", - "armv7a-darwin", - "i686-freebsd", - "x86_64-freebsd", - "aarch64-genode", - "i686-genode", - "x86_64-genode", - "x86_64-solaris", - "js-ghcjs", "aarch64-linux", "armv5tel-linux", "armv6l-linux", "armv7a-linux", "armv7l-linux", - "i686-linux", "mipsel-linux", + "i686-cygwin", + "i686-freebsd", + "i686-linux", + "i686-netbsd", + "i686-openbsd", + "x86_64-cygwin", + "x86_64-freebsd", + "x86_64-linux", + "x86_64-netbsd", + "x86_64-openbsd", + "x86_64-solaris", + "x86_64-darwin", + "i686-darwin", + "aarch64-darwin", + "armv7a-darwin", + "x86_64-windows", + "i686-windows", + "wasm64-wasi", + "wasm32-wasi", + "x86_64-redox", "powerpc64-linux", "powerpc64le-linux", "riscv32-linux", "riscv64-linux", - "x86_64-linux", - "mmix-mmixware", - "aarch64-netbsd", - "armv6l-netbsd", - "armv7a-netbsd", - "armv7l-netbsd", - "i686-netbsd", - "mipsel-netbsd", - "powerpc-netbsd", - "riscv32-netbsd", - "riscv64-netbsd", - "x86_64-netbsd", - "aarch64-none", "arm-none", "armv6l-none", + "aarch64-none", "avr-none", "i686-none", - "msp430-none", - "or1k-none", + "x86_64-none", "powerpc-none", - "riscv32-none", + "msp430-none", "riscv64-none", + "riscv32-none", "vc4-none", - "x86_64-none", - "i686-openbsd", - "x86_64-openbsd", - "x86_64-redox", - "wasm64-wasi", - "wasm32-wasi", - "x86_64-windows", - "i686-windows" + "or1k-none", + "mmix-mmixware", + "js-ghcjs", + "aarch64-genode", + "i686-genode", + "x86_64-genode" ], - "position": "/nix/store/i369k44ks1r4pwd7znr2pqvncx2nl06z-source/builder/comp-builder.nix:337", + "position": "/nix/store/p1zdilb333xwwm2gwiib7nha1s9db3rf-source/builder/comp-builder.nix:328", "unfree": false, "unsupported": false }, + "output": "/nix/store/7qggijdv26niq7fcj775f80a452ziidm-cardano-db-tool-exe-cardano-db-tool-10.0.0", "closure": { - "fromPath": "/nix/store/0wh2gghhvswh6f0injvn1166xidk2i90-cardano-db-tool-exe-cardano-db-tool-12.0.2", - "toPath": "/nix/store/d3ni0k2a8cmkp5l7jcjwc4hx0pnjq9mp-cardano-db-tool-exe-cardano-db-tool-12.0.2", + "fromPath": "/nix/store/7qggijdv26niq7fcj775f80a452ziidm-cardano-db-tool-exe-cardano-db-tool-10.0.0", + "toPath": "/nix/store/l4wwrv2s7kqpsm5qq6l1x8fxqp7hadzr-cardano-db-tool-exe-cardano-db-tool-10.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-db-tool-exe-cardano-db-tool", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-db-sync/9d0180571482ee4c6acb6fbc6bf55b5a4e2ee833#packages.x86_64-linux.cardano-db-sync": { - "org": "input-output-hk", - "repo": "cardano-db-sync", - "tag": "12.0.0", - "rev": "9d0180571482ee4c6acb6fbc6bf55b5a4e2ee833", + "github:input-output-hk/cardano-db-sync/8079738e85ff39f249e63d1f940de4fbbc8ca544#packages.x86_64-linux.cardano-db-sync": { + "name": "github:input-output-hk/cardano-db-sync/${tag}#packages.${system}.cardano-db-sync", + "version": "10.0.1", + "commit": "8079738e85ff39f249e63d1f940de4fbbc8ca544", + "org_name": "input-output-hk", + "repo_name": "cardano-db-sync", "meta": { "available": true, "broken": false, @@ -2092,90 +2137,172 @@ "fullName": "Apache License 2.0", "shortName": "Apache-2.0", "spdxId": "Apache-2.0", - "url": "./Apache-2.0.html" + "url": "http://spdx.org/licenses/Apache-2.0.html" } ], - "name": "cardano-db-sync-exe-cardano-db-sync-12.0.0", + "name": "cardano-db-sync-exe-cardano-db-sync-10.0.1", "outputsToInstall": [ "out" ], "platforms": [ - "i686-cygwin", - "x86_64-cygwin", - "x86_64-darwin", - "i686-darwin", - "aarch64-darwin", - "armv7a-darwin", - "i686-freebsd", - "x86_64-freebsd", - "aarch64-genode", - "i686-genode", - "x86_64-genode", - "x86_64-solaris", - "js-ghcjs", "aarch64-linux", "armv5tel-linux", "armv6l-linux", "armv7a-linux", "armv7l-linux", - "i686-linux", "mipsel-linux", + "i686-cygwin", + "i686-freebsd", + "i686-linux", + "i686-netbsd", + "i686-openbsd", + "x86_64-cygwin", + "x86_64-freebsd", + "x86_64-linux", + "x86_64-netbsd", + "x86_64-openbsd", + "x86_64-solaris", + "x86_64-darwin", + "i686-darwin", + "aarch64-darwin", + "armv7a-darwin", + "x86_64-windows", + "i686-windows", + "wasm64-wasi", + "wasm32-wasi", + "x86_64-redox", "powerpc64-linux", "powerpc64le-linux", "riscv32-linux", "riscv64-linux", - "x86_64-linux", - "mmix-mmixware", - "aarch64-netbsd", - "armv6l-netbsd", - "armv7a-netbsd", - "armv7l-netbsd", - "i686-netbsd", - "mipsel-netbsd", - "powerpc-netbsd", - "riscv32-netbsd", - "riscv64-netbsd", - "x86_64-netbsd", - "aarch64-none", "arm-none", "armv6l-none", + "aarch64-none", "avr-none", "i686-none", - "msp430-none", - "or1k-none", + "x86_64-none", "powerpc-none", - "riscv32-none", + "msp430-none", "riscv64-none", + "riscv32-none", "vc4-none", - "x86_64-none", + "or1k-none", + "mmix-mmixware", + "js-ghcjs", + "aarch64-genode", + "i686-genode", + "x86_64-genode" + ], + "position": "/nix/store/p1zdilb333xwwm2gwiib7nha1s9db3rf-source/builder/comp-builder.nix:328", + "unfree": false, + "unsupported": false + }, + "output": "/nix/store/hbbqkqxjydffzm91chrvqpvrd1lm4np6-cardano-db-sync-exe-cardano-db-sync-10.0.1", + "closure": { + "fromPath": "/nix/store/hbbqkqxjydffzm91chrvqpvrd1lm4np6-cardano-db-sync-exe-cardano-db-sync-10.0.1", + "toPath": "/nix/store/00vqackra1vpy2i0hs3jf9rg2blf3pqk-cardano-db-sync-exe-cardano-db-sync-10.0.1", + "fromStore": "https://cache.iog.io" + }, + "pname": "cardano-db-sync-exe-cardano-db-sync", + "system": "x86_64-linux" + }, + "github:input-output-hk/cardano-db-sync/8079738e85ff39f249e63d1f940de4fbbc8ca544#packages.x86_64-linux.cardano-db-tool": { + "name": "github:input-output-hk/cardano-db-sync/${tag}#packages.${system}.cardano-db-tool", + "version": "10.0.1", + "commit": "8079738e85ff39f249e63d1f940de4fbbc8ca544", + "org_name": "input-output-hk", + "repo_name": "cardano-db-sync", + "meta": { + "available": true, + "broken": false, + "description": "Utilities to manage the cardano-db-sync databases.", + "homepage": "https://github.com/input-output-hk/cardano-db-sync", + "insecure": false, + "license": [ + { + "free": true, + "fullName": "Apache License 2.0", + "shortName": "Apache-2.0", + "spdxId": "Apache-2.0", + "url": "http://spdx.org/licenses/Apache-2.0.html" + } + ], + "name": "cardano-db-tool-exe-cardano-db-tool-10.0.1", + "outputsToInstall": [ + "out" + ], + "platforms": [ + "aarch64-linux", + "armv5tel-linux", + "armv6l-linux", + "armv7a-linux", + "armv7l-linux", + "mipsel-linux", + "i686-cygwin", + "i686-freebsd", + "i686-linux", + "i686-netbsd", "i686-openbsd", + "x86_64-cygwin", + "x86_64-freebsd", + "x86_64-linux", + "x86_64-netbsd", "x86_64-openbsd", - "x86_64-redox", + "x86_64-solaris", + "x86_64-darwin", + "i686-darwin", + "aarch64-darwin", + "armv7a-darwin", + "x86_64-windows", + "i686-windows", "wasm64-wasi", "wasm32-wasi", - "x86_64-windows", - "i686-windows" + "x86_64-redox", + "powerpc64-linux", + "powerpc64le-linux", + "riscv32-linux", + "riscv64-linux", + "arm-none", + "armv6l-none", + "aarch64-none", + "avr-none", + "i686-none", + "x86_64-none", + "powerpc-none", + "msp430-none", + "riscv64-none", + "riscv32-none", + "vc4-none", + "or1k-none", + "mmix-mmixware", + "js-ghcjs", + "aarch64-genode", + "i686-genode", + "x86_64-genode" ], - "position": "/nix/store/i369k44ks1r4pwd7znr2pqvncx2nl06z-source/builder/comp-builder.nix:337", + "position": "/nix/store/p1zdilb333xwwm2gwiib7nha1s9db3rf-source/builder/comp-builder.nix:328", "unfree": false, "unsupported": false }, + "output": "/nix/store/plh2rls2n7h0qv55wazk5ph0g6cs7c0i-cardano-db-tool-exe-cardano-db-tool-10.0.1", "closure": { - "fromPath": "/nix/store/ykfw353myymhmv8v70x61kb37n5pm4ps-cardano-db-sync-exe-cardano-db-sync-12.0.0", - "toPath": "/nix/store/3vn4qx6hpjfnss15rc1vakwfxxqv0p4q-cardano-db-sync-exe-cardano-db-sync-12.0.0", + "fromPath": "/nix/store/plh2rls2n7h0qv55wazk5ph0g6cs7c0i-cardano-db-tool-exe-cardano-db-tool-10.0.1", + "toPath": "/nix/store/6bqml9dw223vsaasqmvqfqzl4b0r5b61-cardano-db-tool-exe-cardano-db-tool-10.0.1", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-db-tool-exe-cardano-db-tool", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-db-sync/9d0180571482ee4c6acb6fbc6bf55b5a4e2ee833#packages.x86_64-linux.cardano-db-tool": { - "org": "input-output-hk", - "repo": "cardano-db-sync", - "tag": "12.0.0", - "rev": "9d0180571482ee4c6acb6fbc6bf55b5a4e2ee833", + "github:input-output-hk/cardano-db-sync/935e1fe5d5d11d694e9b6c54030a592b85742671#packages.x86_64-linux.cardano-db-sync": { + "name": "github:input-output-hk/cardano-db-sync/${tag}#packages.${system}.cardano-db-sync", + "version": "12.0.2", + "commit": "935e1fe5d5d11d694e9b6c54030a592b85742671", + "org_name": "input-output-hk", + "repo_name": "cardano-db-sync", "meta": { "available": true, "broken": false, - "description": "Utilities to manage the cardano-db-sync databases.", + "description": "The Cardano DB Sync node", "homepage": "https://github.com/input-output-hk/cardano-db-sync", "insecure": false, "license": [ @@ -2187,7 +2314,7 @@ "url": "./Apache-2.0.html" } ], - "name": "cardano-db-tool-exe-cardano-db-tool-12.0.0", + "name": "cardano-db-sync-exe-cardano-db-sync-12.0.2", "outputsToInstall": [ "out" ], @@ -2252,18 +2379,21 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/69xvpi0vgniwq3cszn47jz22h6d8gc48-cardano-db-sync-exe-cardano-db-sync-12.0.2", "closure": { - "fromPath": "/nix/store/55c6vjc45n4jnia5b3syy6g0wrhymqbx-cardano-db-tool-exe-cardano-db-tool-12.0.0", - "toPath": "/nix/store/09949aw22ca208nl5yzp8vppzpsck5bb-cardano-db-tool-exe-cardano-db-tool-12.0.0", + "fromPath": "/nix/store/69xvpi0vgniwq3cszn47jz22h6d8gc48-cardano-db-sync-exe-cardano-db-sync-12.0.2", + "toPath": "/nix/store/243x229dkx6hykn1x69salz3s76s46f7-cardano-db-sync-exe-cardano-db-sync-12.0.2", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-db-sync-exe-cardano-db-sync", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-db-sync/ec9b052b6096ea9b9559c3db99a5d696aacbc7a2#packages.x86_64-linux.cardano-db-tool": { - "org": "input-output-hk", - "repo": "cardano-db-sync", - "tag": "11.0.0", - "rev": "ec9b052b6096ea9b9559c3db99a5d696aacbc7a2", + "github:input-output-hk/cardano-db-sync/935e1fe5d5d11d694e9b6c54030a592b85742671#packages.x86_64-linux.cardano-db-tool": { + "name": "github:input-output-hk/cardano-db-sync/${tag}#packages.${system}.cardano-db-tool", + "version": "12.0.2", + "commit": "935e1fe5d5d11d694e9b6c54030a592b85742671", + "org_name": "input-output-hk", + "repo_name": "cardano-db-sync", "meta": { "available": true, "broken": false, @@ -2279,7 +2409,7 @@ "url": "./Apache-2.0.html" } ], - "name": "cardano-db-tool-exe-cardano-db-tool-11.0.0", + "name": "cardano-db-tool-exe-cardano-db-tool-12.0.2", "outputsToInstall": [ "out" ], @@ -2344,18 +2474,21 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/0wh2gghhvswh6f0injvn1166xidk2i90-cardano-db-tool-exe-cardano-db-tool-12.0.2", "closure": { - "fromPath": "/nix/store/wg63s1qvcvqw0aca4r97bg896an5d44x-cardano-db-tool-exe-cardano-db-tool-11.0.0", - "toPath": "/nix/store/x30cwqnmbw3jnpa7df89lcz2nw4jdjds-cardano-db-tool-exe-cardano-db-tool-11.0.0", + "fromPath": "/nix/store/0wh2gghhvswh6f0injvn1166xidk2i90-cardano-db-tool-exe-cardano-db-tool-12.0.2", + "toPath": "/nix/store/d3ni0k2a8cmkp5l7jcjwc4hx0pnjq9mp-cardano-db-tool-exe-cardano-db-tool-12.0.2", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-db-tool-exe-cardano-db-tool", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-db-sync/8079738e85ff39f249e63d1f940de4fbbc8ca544#packages.x86_64-linux.cardano-db-sync": { - "org": "input-output-hk", - "repo": "cardano-db-sync", - "tag": "10.0.1", - "rev": "8079738e85ff39f249e63d1f940de4fbbc8ca544", + "github:input-output-hk/cardano-db-sync/9d0180571482ee4c6acb6fbc6bf55b5a4e2ee833#packages.x86_64-linux.cardano-db-sync": { + "name": "github:input-output-hk/cardano-db-sync/${tag}#packages.${system}.cardano-db-sync", + "version": "12.0.0", + "commit": "9d0180571482ee4c6acb6fbc6bf55b5a4e2ee833", + "org_name": "input-output-hk", + "repo_name": "cardano-db-sync", "meta": { "available": true, "broken": false, @@ -2368,78 +2501,89 @@ "fullName": "Apache License 2.0", "shortName": "Apache-2.0", "spdxId": "Apache-2.0", - "url": "http://spdx.org/licenses/Apache-2.0.html" + "url": "./Apache-2.0.html" } ], - "name": "cardano-db-sync-exe-cardano-db-sync-10.0.1", + "name": "cardano-db-sync-exe-cardano-db-sync-12.0.0", "outputsToInstall": [ "out" ], "platforms": [ - "aarch64-linux", - "armv5tel-linux", - "armv6l-linux", - "armv7a-linux", - "armv7l-linux", - "mipsel-linux", "i686-cygwin", - "i686-freebsd", - "i686-linux", - "i686-netbsd", - "i686-openbsd", "x86_64-cygwin", - "x86_64-freebsd", - "x86_64-linux", - "x86_64-netbsd", - "x86_64-openbsd", - "x86_64-solaris", "x86_64-darwin", "i686-darwin", "aarch64-darwin", "armv7a-darwin", - "x86_64-windows", - "i686-windows", - "wasm64-wasi", - "wasm32-wasi", - "x86_64-redox", + "i686-freebsd", + "x86_64-freebsd", + "aarch64-genode", + "i686-genode", + "x86_64-genode", + "x86_64-solaris", + "js-ghcjs", + "aarch64-linux", + "armv5tel-linux", + "armv6l-linux", + "armv7a-linux", + "armv7l-linux", + "i686-linux", + "mipsel-linux", "powerpc64-linux", "powerpc64le-linux", "riscv32-linux", "riscv64-linux", + "x86_64-linux", + "mmix-mmixware", + "aarch64-netbsd", + "armv6l-netbsd", + "armv7a-netbsd", + "armv7l-netbsd", + "i686-netbsd", + "mipsel-netbsd", + "powerpc-netbsd", + "riscv32-netbsd", + "riscv64-netbsd", + "x86_64-netbsd", + "aarch64-none", "arm-none", "armv6l-none", - "aarch64-none", "avr-none", "i686-none", - "x86_64-none", - "powerpc-none", "msp430-none", - "riscv64-none", + "or1k-none", + "powerpc-none", "riscv32-none", + "riscv64-none", "vc4-none", - "or1k-none", - "mmix-mmixware", - "js-ghcjs", - "aarch64-genode", - "i686-genode", - "x86_64-genode" + "x86_64-none", + "i686-openbsd", + "x86_64-openbsd", + "x86_64-redox", + "wasm64-wasi", + "wasm32-wasi", + "x86_64-windows", + "i686-windows" ], - "position": "/nix/store/p1zdilb333xwwm2gwiib7nha1s9db3rf-source/builder/comp-builder.nix:328", + "position": "/nix/store/i369k44ks1r4pwd7znr2pqvncx2nl06z-source/builder/comp-builder.nix:337", "unfree": false, "unsupported": false }, + "output": "/nix/store/ykfw353myymhmv8v70x61kb37n5pm4ps-cardano-db-sync-exe-cardano-db-sync-12.0.0", "closure": { - "fromPath": "/nix/store/hbbqkqxjydffzm91chrvqpvrd1lm4np6-cardano-db-sync-exe-cardano-db-sync-10.0.1", - "toPath": "/nix/store/00vqackra1vpy2i0hs3jf9rg2blf3pqk-cardano-db-sync-exe-cardano-db-sync-10.0.1", + "fromPath": "/nix/store/ykfw353myymhmv8v70x61kb37n5pm4ps-cardano-db-sync-exe-cardano-db-sync-12.0.0", + "toPath": "/nix/store/3vn4qx6hpjfnss15rc1vakwfxxqv0p4q-cardano-db-sync-exe-cardano-db-sync-12.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-db-sync-exe-cardano-db-sync", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-db-sync/8079738e85ff39f249e63d1f940de4fbbc8ca544#packages.x86_64-linux.cardano-db-tool": { - "org": "input-output-hk", - "repo": "cardano-db-sync", - "tag": "10.0.1", - "rev": "8079738e85ff39f249e63d1f940de4fbbc8ca544", + "github:input-output-hk/cardano-db-sync/9d0180571482ee4c6acb6fbc6bf55b5a4e2ee833#packages.x86_64-linux.cardano-db-tool": { + "name": "github:input-output-hk/cardano-db-sync/${tag}#packages.${system}.cardano-db-tool", + "version": "12.0.0", + "commit": "9d0180571482ee4c6acb6fbc6bf55b5a4e2ee833", + "org_name": "input-output-hk", + "repo_name": "cardano-db-sync", "meta": { "available": true, "broken": false, @@ -2452,162 +2596,89 @@ "fullName": "Apache License 2.0", "shortName": "Apache-2.0", "spdxId": "Apache-2.0", - "url": "http://spdx.org/licenses/Apache-2.0.html" + "url": "./Apache-2.0.html" } ], - "name": "cardano-db-tool-exe-cardano-db-tool-10.0.1", + "name": "cardano-db-tool-exe-cardano-db-tool-12.0.0", "outputsToInstall": [ "out" ], "platforms": [ - "aarch64-linux", - "armv5tel-linux", - "armv6l-linux", - "armv7a-linux", - "armv7l-linux", - "mipsel-linux", "i686-cygwin", - "i686-freebsd", - "i686-linux", - "i686-netbsd", - "i686-openbsd", "x86_64-cygwin", - "x86_64-freebsd", - "x86_64-linux", - "x86_64-netbsd", - "x86_64-openbsd", - "x86_64-solaris", "x86_64-darwin", "i686-darwin", "aarch64-darwin", "armv7a-darwin", - "x86_64-windows", - "i686-windows", - "wasm64-wasi", - "wasm32-wasi", - "x86_64-redox", - "powerpc64-linux", - "powerpc64le-linux", - "riscv32-linux", - "riscv64-linux", - "arm-none", - "armv6l-none", - "aarch64-none", - "avr-none", - "i686-none", - "x86_64-none", - "powerpc-none", - "msp430-none", - "riscv64-none", - "riscv32-none", - "vc4-none", - "or1k-none", - "mmix-mmixware", - "js-ghcjs", + "i686-freebsd", + "x86_64-freebsd", "aarch64-genode", "i686-genode", - "x86_64-genode" - ], - "position": "/nix/store/p1zdilb333xwwm2gwiib7nha1s9db3rf-source/builder/comp-builder.nix:328", - "unfree": false, - "unsupported": false - }, - "closure": { - "fromPath": "/nix/store/plh2rls2n7h0qv55wazk5ph0g6cs7c0i-cardano-db-tool-exe-cardano-db-tool-10.0.1", - "toPath": "/nix/store/6bqml9dw223vsaasqmvqfqzl4b0r5b61-cardano-db-tool-exe-cardano-db-tool-10.0.1", - "fromStore": "https://cache.iog.io" - }, - "system": "x86_64-linux" - }, - "github:input-output-hk/cardano-db-sync/5eff9a0df135f903a803762d54bde5882aefa42e#packages.x86_64-linux.cardano-db-sync": { - "org": "input-output-hk", - "repo": "cardano-db-sync", - "tag": "10.0.0", - "rev": "5eff9a0df135f903a803762d54bde5882aefa42e", - "meta": { - "available": true, - "broken": false, - "description": "The Cardano DB Sync node", - "homepage": "https://github.com/input-output-hk/cardano-db-sync", - "insecure": false, - "license": [ - { - "free": true, - "fullName": "Apache License 2.0", - "shortName": "Apache-2.0", - "spdxId": "Apache-2.0", - "url": "http://spdx.org/licenses/Apache-2.0.html" - } - ], - "name": "cardano-db-sync-exe-cardano-db-sync-10.0.0", - "outputsToInstall": [ - "out" - ], - "platforms": [ + "x86_64-genode", + "x86_64-solaris", + "js-ghcjs", "aarch64-linux", "armv5tel-linux", "armv6l-linux", "armv7a-linux", "armv7l-linux", - "mipsel-linux", - "i686-cygwin", - "i686-freebsd", "i686-linux", - "i686-netbsd", - "i686-openbsd", - "x86_64-cygwin", - "x86_64-freebsd", - "x86_64-linux", - "x86_64-netbsd", - "x86_64-openbsd", - "x86_64-solaris", - "x86_64-darwin", - "i686-darwin", - "aarch64-darwin", - "armv7a-darwin", - "x86_64-windows", - "i686-windows", - "wasm64-wasi", - "wasm32-wasi", - "x86_64-redox", + "mipsel-linux", "powerpc64-linux", "powerpc64le-linux", "riscv32-linux", "riscv64-linux", + "x86_64-linux", + "mmix-mmixware", + "aarch64-netbsd", + "armv6l-netbsd", + "armv7a-netbsd", + "armv7l-netbsd", + "i686-netbsd", + "mipsel-netbsd", + "powerpc-netbsd", + "riscv32-netbsd", + "riscv64-netbsd", + "x86_64-netbsd", + "aarch64-none", "arm-none", "armv6l-none", - "aarch64-none", "avr-none", "i686-none", - "x86_64-none", - "powerpc-none", "msp430-none", - "riscv64-none", + "or1k-none", + "powerpc-none", "riscv32-none", + "riscv64-none", "vc4-none", - "or1k-none", - "mmix-mmixware", - "js-ghcjs", - "aarch64-genode", - "i686-genode", - "x86_64-genode" + "x86_64-none", + "i686-openbsd", + "x86_64-openbsd", + "x86_64-redox", + "wasm64-wasi", + "wasm32-wasi", + "x86_64-windows", + "i686-windows" ], - "position": "/nix/store/p1zdilb333xwwm2gwiib7nha1s9db3rf-source/builder/comp-builder.nix:328", + "position": "/nix/store/i369k44ks1r4pwd7znr2pqvncx2nl06z-source/builder/comp-builder.nix:337", "unfree": false, "unsupported": false }, + "output": "/nix/store/55c6vjc45n4jnia5b3syy6g0wrhymqbx-cardano-db-tool-exe-cardano-db-tool-12.0.0", "closure": { - "fromPath": "/nix/store/jab7102qc8rn77f9l7ncjlc0j47l18zw-cardano-db-sync-exe-cardano-db-sync-10.0.0", - "toPath": "/nix/store/x0xvnqsqwlg1vi85428nfm7vwi7f1xb5-cardano-db-sync-exe-cardano-db-sync-10.0.0", + "fromPath": "/nix/store/55c6vjc45n4jnia5b3syy6g0wrhymqbx-cardano-db-tool-exe-cardano-db-tool-12.0.0", + "toPath": "/nix/store/09949aw22ca208nl5yzp8vppzpsck5bb-cardano-db-tool-exe-cardano-db-tool-12.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-db-tool-exe-cardano-db-tool", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-db-sync/5eff9a0df135f903a803762d54bde5882aefa42e#packages.x86_64-linux.cardano-db-tool": { - "org": "input-output-hk", - "repo": "cardano-db-sync", - "tag": "10.0.0", - "rev": "5eff9a0df135f903a803762d54bde5882aefa42e", + "github:input-output-hk/cardano-db-sync/ec9b052b6096ea9b9559c3db99a5d696aacbc7a2#packages.x86_64-linux.cardano-db-tool": { + "name": "github:input-output-hk/cardano-db-sync/${tag}#packages.${system}.cardano-db-tool", + "version": "11.0.0", + "commit": "ec9b052b6096ea9b9559c3db99a5d696aacbc7a2", + "org_name": "input-output-hk", + "repo_name": "cardano-db-sync", "meta": { "available": true, "broken": false, @@ -2620,78 +2691,89 @@ "fullName": "Apache License 2.0", "shortName": "Apache-2.0", "spdxId": "Apache-2.0", - "url": "http://spdx.org/licenses/Apache-2.0.html" + "url": "./Apache-2.0.html" } ], - "name": "cardano-db-tool-exe-cardano-db-tool-10.0.0", + "name": "cardano-db-tool-exe-cardano-db-tool-11.0.0", "outputsToInstall": [ "out" ], "platforms": [ - "aarch64-linux", - "armv5tel-linux", - "armv6l-linux", - "armv7a-linux", - "armv7l-linux", - "mipsel-linux", "i686-cygwin", - "i686-freebsd", - "i686-linux", - "i686-netbsd", - "i686-openbsd", "x86_64-cygwin", - "x86_64-freebsd", - "x86_64-linux", - "x86_64-netbsd", - "x86_64-openbsd", - "x86_64-solaris", "x86_64-darwin", "i686-darwin", "aarch64-darwin", "armv7a-darwin", - "x86_64-windows", - "i686-windows", - "wasm64-wasi", - "wasm32-wasi", - "x86_64-redox", + "i686-freebsd", + "x86_64-freebsd", + "aarch64-genode", + "i686-genode", + "x86_64-genode", + "x86_64-solaris", + "js-ghcjs", + "aarch64-linux", + "armv5tel-linux", + "armv6l-linux", + "armv7a-linux", + "armv7l-linux", + "i686-linux", + "mipsel-linux", "powerpc64-linux", "powerpc64le-linux", "riscv32-linux", "riscv64-linux", + "x86_64-linux", + "mmix-mmixware", + "aarch64-netbsd", + "armv6l-netbsd", + "armv7a-netbsd", + "armv7l-netbsd", + "i686-netbsd", + "mipsel-netbsd", + "powerpc-netbsd", + "riscv32-netbsd", + "riscv64-netbsd", + "x86_64-netbsd", + "aarch64-none", "arm-none", "armv6l-none", - "aarch64-none", "avr-none", "i686-none", - "x86_64-none", - "powerpc-none", "msp430-none", - "riscv64-none", + "or1k-none", + "powerpc-none", "riscv32-none", + "riscv64-none", "vc4-none", - "or1k-none", - "mmix-mmixware", - "js-ghcjs", - "aarch64-genode", - "i686-genode", - "x86_64-genode" + "x86_64-none", + "i686-openbsd", + "x86_64-openbsd", + "x86_64-redox", + "wasm64-wasi", + "wasm32-wasi", + "x86_64-windows", + "i686-windows" ], - "position": "/nix/store/p1zdilb333xwwm2gwiib7nha1s9db3rf-source/builder/comp-builder.nix:328", + "position": "/nix/store/i369k44ks1r4pwd7znr2pqvncx2nl06z-source/builder/comp-builder.nix:337", "unfree": false, "unsupported": false }, + "output": "/nix/store/wg63s1qvcvqw0aca4r97bg896an5d44x-cardano-db-tool-exe-cardano-db-tool-11.0.0", "closure": { - "fromPath": "/nix/store/7qggijdv26niq7fcj775f80a452ziidm-cardano-db-tool-exe-cardano-db-tool-10.0.0", - "toPath": "/nix/store/l4wwrv2s7kqpsm5qq6l1x8fxqp7hadzr-cardano-db-tool-exe-cardano-db-tool-10.0.0", + "fromPath": "/nix/store/wg63s1qvcvqw0aca4r97bg896an5d44x-cardano-db-tool-exe-cardano-db-tool-11.0.0", + "toPath": "/nix/store/x30cwqnmbw3jnpa7df89lcz2nw4jdjds-cardano-db-tool-exe-cardano-db-tool-11.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-db-tool-exe-cardano-db-tool", "system": "x86_64-linux" }, "github:input-output-hk/cardano-faucet/ba2a8d9b300a81ccec67aaa32a5dffbdee5e11ad#packages.x86_64-linux.\"cardano-faucet:exe:cardano-faucet\"": { - "org": "input-output-hk", - "repo": "cardano-faucet", - "tag": "8.3", - "rev": "ba2a8d9b300a81ccec67aaa32a5dffbdee5e11ad", + "name": "github:input-output-hk/cardano-faucet/${tag}#packages.${system}.\"cardano-faucet:exe:cardano-faucet\"", + "version": "8.3", + "commit": "ba2a8d9b300a81ccec67aaa32a5dffbdee5e11ad", + "org_name": "input-output-hk", + "repo_name": "cardano-faucet", "meta": { "available": true, "broken": false, @@ -2789,18 +2871,21 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/sffmg2i5lfr5sf4cyxrwirwk2d8dcxxc-cardano-faucet-exe-cardano-faucet-8.3", "closure": { "fromPath": "/nix/store/sffmg2i5lfr5sf4cyxrwirwk2d8dcxxc-cardano-faucet-exe-cardano-faucet-8.3", "toPath": "/nix/store/1rccahqa6r4wfi4dw7p7cvvd4qmnn89i-cardano-faucet-exe-cardano-faucet-8.3", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-faucet-exe-cardano-faucet", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/9a0898636a4ea13f720dc3c6c8789b27beeb37c9#hydraJobs.musl.bech32": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "1.1.4.1", - "rev": "9a0898636a4ea13f720dc3c6c8789b27beeb37c9", + "github:input-output-hk/cardano-node/2f041a1b21233ced41e2f8a8bca20e97ed257f0d#hydraJobs.musl.bech32": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.bech32", + "version": "1.1.4.1", + "commit": "2f041a1b21233ced41e2f8a8bca20e97ed257f0d", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -2898,18 +2983,21 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/b0h1ha50p0s26ypkqbwkv8z50vi0sin2-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", "closure": { "fromPath": "/nix/store/b0h1ha50p0s26ypkqbwkv8z50vi0sin2-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", "toPath": "/nix/store/lswavbyb64yj8vn5850bfzy3gjq3bzhq-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", "fromStore": "https://cache.iog.io" }, + "pname": "bech32-exe-bech32", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/9a0898636a4ea13f720dc3c6c8789b27beeb37c9#hydraJobs.musl.cardano-cli": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "", - "rev": "9a0898636a4ea13f720dc3c6c8789b27beeb37c9", + "github:input-output-hk/cardano-node/2f041a1b21233ced41e2f8a8bca20e97ed257f0d#hydraJobs.musl.cardano-cli": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.cardano-cli", + "version": "", + "commit": "2f041a1b21233ced41e2f8a8bca20e97ed257f0d", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -2926,7 +3014,7 @@ } ], "mainProgram": "cardano-cli", - "name": "cardano-cli-exe-cardano-cli-8.8.0.0", + "name": "cardano-cli-exe-cardano-cli-8.6.1.0", "outputsToInstall": [ "out" ], @@ -3007,18 +3095,21 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/qyilcqf60ndx3lj3jxh54i5s43iz3vqn-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.6.1.0", "closure": { - "fromPath": "/nix/store/43arb8cd8mivmnws6dqz0zc8526r28sd-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.8.0.0", - "toPath": "/nix/store/18y38k597h4yzj3vfjx0nrcgxvsf4dpw-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.8.0.0", + "fromPath": "/nix/store/qyilcqf60ndx3lj3jxh54i5s43iz3vqn-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.6.1.0", + "toPath": "/nix/store/43j5myq6chqmacyz9hccs6wr7gn2fdgd-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.6.1.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.6.1.0", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/9a0898636a4ea13f720dc3c6c8789b27beeb37c9#hydraJobs.musl.cardano-node": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "", - "rev": "9a0898636a4ea13f720dc3c6c8789b27beeb37c9", + "github:input-output-hk/cardano-node/2f041a1b21233ced41e2f8a8bca20e97ed257f0d#hydraJobs.musl.cardano-node": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.cardano-node", + "version": "", + "commit": "2f041a1b21233ced41e2f8a8bca20e97ed257f0d", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -3035,7 +3126,7 @@ } ], "mainProgram": "cardano-node", - "name": "cardano-node-exe-cardano-node-8.4.0", + "name": "cardano-node-exe-cardano-node-8.3.1", "outputsToInstall": [ "out" ], @@ -3116,18 +3207,21 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/sp4b1j61fkwby9svj9375dj0z540q2rw-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.3.1", "closure": { - "fromPath": "/nix/store/hjbnk8b2213g9z8s9xqr4i1z54apimzg-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.4.0", - "toPath": "/nix/store/0jp003xdq2b9ksh4dm4qnn1qyqvz5hkc-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.4.0", + "fromPath": "/nix/store/sp4b1j61fkwby9svj9375dj0z540q2rw-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.3.1", + "toPath": "/nix/store/6hnqniq9an4m7s2dq2aw16971c72y2pp-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.3.1", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.3.1", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/9a0898636a4ea13f720dc3c6c8789b27beeb37c9#hydraJobs.musl.cardano-submit-api": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "3.1.5", - "rev": "9a0898636a4ea13f720dc3c6c8789b27beeb37c9", + "github:input-output-hk/cardano-node/2f041a1b21233ced41e2f8a8bca20e97ed257f0d#hydraJobs.musl.cardano-submit-api": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.cardano-submit-api", + "version": "3.1.4", + "commit": "2f041a1b21233ced41e2f8a8bca20e97ed257f0d", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -3144,7 +3238,7 @@ } ], "mainProgram": "cardano-submit-api", - "name": "cardano-submit-api-exe-cardano-submit-api-3.1.5", + "name": "cardano-submit-api-exe-cardano-submit-api-3.1.4", "outputsToInstall": [ "out" ], @@ -3225,18 +3319,21 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/gf41ma4d7j8047bpm3fpry5y16zcjvq6-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.4", "closure": { - "fromPath": "/nix/store/48jx2apwrxphqz0fb6vlnx1mgm2pk37g-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.5", - "toPath": "/nix/store/h7489g3gmq6ngyzg36q4hagk6gkgyz96-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.5", + "fromPath": "/nix/store/gf41ma4d7j8047bpm3fpry5y16zcjvq6-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.4", + "toPath": "/nix/store/w9qb3si2ikh18xcbw02sv20njjx971l2-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.4", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-submit-api-exe-cardano-submit-api", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/9a0898636a4ea13f720dc3c6c8789b27beeb37c9#hydraJobs.musl.db-analyser": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "0.9.0.0", - "rev": "9a0898636a4ea13f720dc3c6c8789b27beeb37c9", + "github:input-output-hk/cardano-node/2f041a1b21233ced41e2f8a8bca20e97ed257f0d#hydraJobs.musl.db-analyser": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.db-analyser", + "version": "0.8.0.1", + "commit": "2f041a1b21233ced41e2f8a8bca20e97ed257f0d", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -3253,7 +3350,7 @@ } ], "mainProgram": "db-analyser", - "name": "ouroboros-consensus-cardano-exe-db-analyser-0.9.0.0", + "name": "ouroboros-consensus-cardano-exe-db-analyser-0.8.0.1", "outputsToInstall": [ "out" ], @@ -3334,18 +3431,21 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/gfmcsxrn8lc7nlvbjw8wl90xjb27nm7n-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.8.0.1", "closure": { - "fromPath": "/nix/store/kymv2638ma1mnypm38m17a2qbm31s30v-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.9.0.0", - "toPath": "/nix/store/2n2xc4kh5rr1vvwchzfqjvi8p6md542v-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.9.0.0", + "fromPath": "/nix/store/gfmcsxrn8lc7nlvbjw8wl90xjb27nm7n-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.8.0.1", + "toPath": "/nix/store/x5pdck4c4py2scl1pxqpd7acs31rcw4k-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.8.0.1", "fromStore": "https://cache.iog.io" }, + "pname": "ouroboros-consensus-cardano-exe-db-analyser", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/9a0898636a4ea13f720dc3c6c8789b27beeb37c9#hydraJobs.musl.db-synthesizer": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "0.9.0.0", - "rev": "9a0898636a4ea13f720dc3c6c8789b27beeb37c9", + "github:input-output-hk/cardano-node/2f041a1b21233ced41e2f8a8bca20e97ed257f0d#hydraJobs.musl.db-synthesizer": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.db-synthesizer", + "version": "0.8.0.1", + "commit": "2f041a1b21233ced41e2f8a8bca20e97ed257f0d", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -3362,7 +3462,7 @@ } ], "mainProgram": "db-synthesizer", - "name": "ouroboros-consensus-cardano-exe-db-synthesizer-0.9.0.0", + "name": "ouroboros-consensus-cardano-exe-db-synthesizer-0.8.0.1", "outputsToInstall": [ "out" ], @@ -3443,18 +3543,21 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/b3yvxl1li6khm4gam8s8i2i9mcz9cxrh-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.8.0.1", "closure": { - "fromPath": "/nix/store/8w51g0msd03x8khfrykz4dmgpxmc5r42-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.9.0.0", - "toPath": "/nix/store/i0bwznx0jvdwbzfsdrx8d5mv1ck6w54y-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.9.0.0", + "fromPath": "/nix/store/b3yvxl1li6khm4gam8s8i2i9mcz9cxrh-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.8.0.1", + "toPath": "/nix/store/cqcfn86kmciri90m7c74pdf0qyyz9vsj-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.8.0.1", "fromStore": "https://cache.iog.io" }, + "pname": "ouroboros-consensus-cardano-exe-db-synthesizer", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/9a0898636a4ea13f720dc3c6c8789b27beeb37c9#hydraJobs.musl.db-truncater": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "0.9.0.0", - "rev": "9a0898636a4ea13f720dc3c6c8789b27beeb37c9", + "github:input-output-hk/cardano-node/2f041a1b21233ced41e2f8a8bca20e97ed257f0d#hydraJobs.musl.db-truncater": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.db-truncater", + "version": "0.8.0.1", + "commit": "2f041a1b21233ced41e2f8a8bca20e97ed257f0d", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -3471,7 +3574,7 @@ } ], "mainProgram": "db-truncater", - "name": "ouroboros-consensus-cardano-exe-db-truncater-0.9.0.0", + "name": "ouroboros-consensus-cardano-exe-db-truncater-0.8.0.1", "outputsToInstall": [ "out" ], @@ -3552,18 +3655,21 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/jknhi8sgpwyn5sjb3xgyq4pgjk4g5dw8-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.8.0.1", "closure": { - "fromPath": "/nix/store/2w7y0yrk6a6gphbckzwgccyznm0waxzi-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.9.0.0", - "toPath": "/nix/store/088qsyr58sgsrd0k13j97v4k88ljzhgr-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.9.0.0", + "fromPath": "/nix/store/jknhi8sgpwyn5sjb3xgyq4pgjk4g5dw8-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.8.0.1", + "toPath": "/nix/store/lzdxdinvf45rq2nnan9fqhx3pcwyzhn3-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.8.0.1", "fromStore": "https://cache.iog.io" }, + "pname": "ouroboros-consensus-cardano-exe-db-truncater", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/2f041a1b21233ced41e2f8a8bca20e97ed257f0d#hydraJobs.musl.bech32": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "1.1.4.1", - "rev": "2f041a1b21233ced41e2f8a8bca20e97ed257f0d", + "github:input-output-hk/cardano-node/408d8ae10a2792ace3a822e312433960e47de4e9#hydraJobs.musl.bech32": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.bech32", + "version": "1.1.4.1", + "commit": "408d8ae10a2792ace3a822e312433960e47de4e9", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -3604,7 +3710,6 @@ "armv7a-linux", "armv7l-linux", "i686-linux", - "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -3657,22 +3762,25 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", + "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", "unfree": false, "unsupported": false }, + "output": "/nix/store/spimgaj0l4ik4wdrz3c2n9k9xnjspymw-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", "closure": { - "fromPath": "/nix/store/b0h1ha50p0s26ypkqbwkv8z50vi0sin2-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", - "toPath": "/nix/store/lswavbyb64yj8vn5850bfzy3gjq3bzhq-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", + "fromPath": "/nix/store/spimgaj0l4ik4wdrz3c2n9k9xnjspymw-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", + "toPath": "/nix/store/8bcwq9xmmhpwjrwhqkdsz39vkq9lnjiy-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", "fromStore": "https://cache.iog.io" }, + "pname": "bech32-exe-bech32", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/2f041a1b21233ced41e2f8a8bca20e97ed257f0d#hydraJobs.musl.cardano-cli": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "", - "rev": "2f041a1b21233ced41e2f8a8bca20e97ed257f0d", + "github:input-output-hk/cardano-node/408d8ae10a2792ace3a822e312433960e47de4e9#hydraJobs.musl.cardano-cli": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.cardano-cli", + "version": "", + "commit": "408d8ae10a2792ace3a822e312433960e47de4e9", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -3689,7 +3797,7 @@ } ], "mainProgram": "cardano-cli", - "name": "cardano-cli-exe-cardano-cli-8.6.1.0", + "name": "cardano-cli-exe-cardano-cli-8.4.0.0", "outputsToInstall": [ "out" ], @@ -3713,7 +3821,6 @@ "armv7a-linux", "armv7l-linux", "i686-linux", - "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -3766,22 +3873,25 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", + "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", "unfree": false, "unsupported": false }, + "output": "/nix/store/v8iyxiqh3p0mbn8rp5s9c0ykv3a156n8-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.4.0.0", "closure": { - "fromPath": "/nix/store/qyilcqf60ndx3lj3jxh54i5s43iz3vqn-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.6.1.0", - "toPath": "/nix/store/43j5myq6chqmacyz9hccs6wr7gn2fdgd-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.6.1.0", + "fromPath": "/nix/store/v8iyxiqh3p0mbn8rp5s9c0ykv3a156n8-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.4.0.0", + "toPath": "/nix/store/0gvxzm0ccfqc2lkks00fpndw08rnbcb0-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.4.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.4.0.0", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/2f041a1b21233ced41e2f8a8bca20e97ed257f0d#hydraJobs.musl.cardano-node": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "", - "rev": "2f041a1b21233ced41e2f8a8bca20e97ed257f0d", + "github:input-output-hk/cardano-node/408d8ae10a2792ace3a822e312433960e47de4e9#hydraJobs.musl.cardano-node": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.cardano-node", + "version": "", + "commit": "408d8ae10a2792ace3a822e312433960e47de4e9", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -3798,7 +3908,7 @@ } ], "mainProgram": "cardano-node", - "name": "cardano-node-exe-cardano-node-8.3.1", + "name": "cardano-node-exe-cardano-node-8.2.0", "outputsToInstall": [ "out" ], @@ -3822,7 +3932,6 @@ "armv7a-linux", "armv7l-linux", "i686-linux", - "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -3875,22 +3984,25 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", + "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", "unfree": false, "unsupported": false }, + "output": "/nix/store/cgas0zzz9j3k9di0dps8ymlcrhhjma8j-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.2.0", "closure": { - "fromPath": "/nix/store/sp4b1j61fkwby9svj9375dj0z540q2rw-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.3.1", - "toPath": "/nix/store/6hnqniq9an4m7s2dq2aw16971c72y2pp-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.3.1", + "fromPath": "/nix/store/cgas0zzz9j3k9di0dps8ymlcrhhjma8j-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.2.0", + "toPath": "/nix/store/mvmpax6af11937kbm1gv4wbf78n334zh-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.2.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.2.0", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/2f041a1b21233ced41e2f8a8bca20e97ed257f0d#hydraJobs.musl.cardano-submit-api": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "3.1.4", - "rev": "2f041a1b21233ced41e2f8a8bca20e97ed257f0d", + "github:input-output-hk/cardano-node/408d8ae10a2792ace3a822e312433960e47de4e9#hydraJobs.musl.cardano-submit-api": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.cardano-submit-api", + "version": "3.1.3", + "commit": "408d8ae10a2792ace3a822e312433960e47de4e9", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -3907,7 +4019,7 @@ } ], "mainProgram": "cardano-submit-api", - "name": "cardano-submit-api-exe-cardano-submit-api-3.1.4", + "name": "cardano-submit-api-exe-cardano-submit-api-3.1.3", "outputsToInstall": [ "out" ], @@ -3931,7 +4043,6 @@ "armv7a-linux", "armv7l-linux", "i686-linux", - "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -3984,22 +4095,25 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", + "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", "unfree": false, "unsupported": false }, + "output": "/nix/store/8k2dp0bbyng5z12s37nl58cswl3zpnaq-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.3", "closure": { - "fromPath": "/nix/store/gf41ma4d7j8047bpm3fpry5y16zcjvq6-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.4", - "toPath": "/nix/store/w9qb3si2ikh18xcbw02sv20njjx971l2-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.4", + "fromPath": "/nix/store/8k2dp0bbyng5z12s37nl58cswl3zpnaq-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.3", + "toPath": "/nix/store/nhyf439h7qnrs1lws8gjj1vpf1w7mc3n-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.3", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-submit-api-exe-cardano-submit-api", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/2f041a1b21233ced41e2f8a8bca20e97ed257f0d#hydraJobs.musl.db-analyser": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "0.8.0.1", - "rev": "2f041a1b21233ced41e2f8a8bca20e97ed257f0d", + "github:input-output-hk/cardano-node/408d8ae10a2792ace3a822e312433960e47de4e9#hydraJobs.musl.db-analyser": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.db-analyser", + "version": "0.7.0.0", + "commit": "408d8ae10a2792ace3a822e312433960e47de4e9", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -4016,7 +4130,7 @@ } ], "mainProgram": "db-analyser", - "name": "ouroboros-consensus-cardano-exe-db-analyser-0.8.0.1", + "name": "ouroboros-consensus-cardano-exe-db-analyser-0.7.0.0", "outputsToInstall": [ "out" ], @@ -4040,7 +4154,6 @@ "armv7a-linux", "armv7l-linux", "i686-linux", - "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -4093,22 +4206,25 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", + "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", "unfree": false, "unsupported": false }, + "output": "/nix/store/20cb0w9wwc2jq8a4071zddav27sd1jps-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.7.0.0", "closure": { - "fromPath": "/nix/store/gfmcsxrn8lc7nlvbjw8wl90xjb27nm7n-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.8.0.1", - "toPath": "/nix/store/x5pdck4c4py2scl1pxqpd7acs31rcw4k-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.8.0.1", + "fromPath": "/nix/store/20cb0w9wwc2jq8a4071zddav27sd1jps-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.7.0.0", + "toPath": "/nix/store/9xs6jgx022n0nscf1qmyawz11srag16j-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.7.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "ouroboros-consensus-cardano-exe-db-analyser", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/2f041a1b21233ced41e2f8a8bca20e97ed257f0d#hydraJobs.musl.db-synthesizer": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "0.8.0.1", - "rev": "2f041a1b21233ced41e2f8a8bca20e97ed257f0d", + "github:input-output-hk/cardano-node/408d8ae10a2792ace3a822e312433960e47de4e9#hydraJobs.musl.db-synthesizer": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.db-synthesizer", + "version": "0.7.0.0", + "commit": "408d8ae10a2792ace3a822e312433960e47de4e9", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -4125,7 +4241,7 @@ } ], "mainProgram": "db-synthesizer", - "name": "ouroboros-consensus-cardano-exe-db-synthesizer-0.8.0.1", + "name": "ouroboros-consensus-cardano-exe-db-synthesizer-0.7.0.0", "outputsToInstall": [ "out" ], @@ -4149,7 +4265,6 @@ "armv7a-linux", "armv7l-linux", "i686-linux", - "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -4202,22 +4317,25 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", + "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", "unfree": false, "unsupported": false }, + "output": "/nix/store/6pil61sq6lg8iddcdhy4mi4q0ijwslnj-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.7.0.0", "closure": { - "fromPath": "/nix/store/b3yvxl1li6khm4gam8s8i2i9mcz9cxrh-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.8.0.1", - "toPath": "/nix/store/cqcfn86kmciri90m7c74pdf0qyyz9vsj-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.8.0.1", + "fromPath": "/nix/store/6pil61sq6lg8iddcdhy4mi4q0ijwslnj-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.7.0.0", + "toPath": "/nix/store/5n7yxx9llg9kslz69rn9vsx0bxqajx95-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.7.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "ouroboros-consensus-cardano-exe-db-synthesizer", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/2f041a1b21233ced41e2f8a8bca20e97ed257f0d#hydraJobs.musl.db-truncater": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "0.8.0.1", - "rev": "2f041a1b21233ced41e2f8a8bca20e97ed257f0d", + "github:input-output-hk/cardano-node/408d8ae10a2792ace3a822e312433960e47de4e9#hydraJobs.musl.db-truncater": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.db-truncater", + "version": "0.7.0.0", + "commit": "408d8ae10a2792ace3a822e312433960e47de4e9", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -4234,7 +4352,7 @@ } ], "mainProgram": "db-truncater", - "name": "ouroboros-consensus-cardano-exe-db-truncater-0.8.0.1", + "name": "ouroboros-consensus-cardano-exe-db-truncater-0.7.0.0", "outputsToInstall": [ "out" ], @@ -4258,7 +4376,6 @@ "armv7a-linux", "armv7l-linux", "i686-linux", - "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -4311,22 +4428,25 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", + "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", "unfree": false, "unsupported": false }, + "output": "/nix/store/nwbjjgnh1igl4lxllrlvpmhnb220n4r3-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.7.0.0", "closure": { - "fromPath": "/nix/store/jknhi8sgpwyn5sjb3xgyq4pgjk4g5dw8-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.8.0.1", - "toPath": "/nix/store/lzdxdinvf45rq2nnan9fqhx3pcwyzhn3-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.8.0.1", + "fromPath": "/nix/store/nwbjjgnh1igl4lxllrlvpmhnb220n4r3-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.7.0.0", + "toPath": "/nix/store/ic1q5zxi1spnh194d7zsds4plg389fbi-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.7.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "ouroboros-consensus-cardano-exe-db-truncater", "system": "x86_64-linux" }, "github:input-output-hk/cardano-node/6639b2e742f41ca04b04d8c2436beb86d4e5b770#hydraJobs.musl.bech32": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "1.1.4.1", - "rev": "6639b2e742f41ca04b04d8c2436beb86d4e5b770", + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.bech32", + "version": "1.1.4.1", + "commit": "6639b2e742f41ca04b04d8c2436beb86d4e5b770", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -4424,18 +4544,21 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/b0h1ha50p0s26ypkqbwkv8z50vi0sin2-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", "closure": { "fromPath": "/nix/store/b0h1ha50p0s26ypkqbwkv8z50vi0sin2-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", "toPath": "/nix/store/lswavbyb64yj8vn5850bfzy3gjq3bzhq-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", "fromStore": "https://cache.iog.io" }, + "pname": "bech32-exe-bech32", "system": "x86_64-linux" }, "github:input-output-hk/cardano-node/6639b2e742f41ca04b04d8c2436beb86d4e5b770#hydraJobs.musl.cardano-cli": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "", - "rev": "6639b2e742f41ca04b04d8c2436beb86d4e5b770", + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.cardano-cli", + "version": "", + "commit": "6639b2e742f41ca04b04d8c2436beb86d4e5b770", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -4533,18 +4656,21 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/lx694v1xi0zk9ddb2dfqg2hii3sx79rw-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.6.1.0", "closure": { "fromPath": "/nix/store/lx694v1xi0zk9ddb2dfqg2hii3sx79rw-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.6.1.0", "toPath": "/nix/store/s0kay3y6fqgs8akl2r774il34a2hg270-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.6.1.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.6.1.0", "system": "x86_64-linux" }, "github:input-output-hk/cardano-node/6639b2e742f41ca04b04d8c2436beb86d4e5b770#hydraJobs.musl.cardano-node": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "", - "rev": "6639b2e742f41ca04b04d8c2436beb86d4e5b770", + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.cardano-node", + "version": "", + "commit": "6639b2e742f41ca04b04d8c2436beb86d4e5b770", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -4642,18 +4768,21 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/874rx27caihyx5v0fl3a9hlhfg04clkh-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.3.0", "closure": { "fromPath": "/nix/store/874rx27caihyx5v0fl3a9hlhfg04clkh-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.3.0", "toPath": "/nix/store/wkpr77fgscgrbyh57rdppx3fvld1jzr8-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.3.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.3.0", "system": "x86_64-linux" }, "github:input-output-hk/cardano-node/6639b2e742f41ca04b04d8c2436beb86d4e5b770#hydraJobs.musl.cardano-submit-api": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "3.1.4", - "rev": "6639b2e742f41ca04b04d8c2436beb86d4e5b770", + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.cardano-submit-api", + "version": "3.1.4", + "commit": "6639b2e742f41ca04b04d8c2436beb86d4e5b770", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -4751,18 +4880,21 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/gf41ma4d7j8047bpm3fpry5y16zcjvq6-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.4", "closure": { "fromPath": "/nix/store/gf41ma4d7j8047bpm3fpry5y16zcjvq6-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.4", "toPath": "/nix/store/w9qb3si2ikh18xcbw02sv20njjx971l2-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.4", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-submit-api-exe-cardano-submit-api", "system": "x86_64-linux" }, "github:input-output-hk/cardano-node/6639b2e742f41ca04b04d8c2436beb86d4e5b770#hydraJobs.musl.db-analyser": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "0.8.0.1", - "rev": "6639b2e742f41ca04b04d8c2436beb86d4e5b770", + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.db-analyser", + "version": "0.8.0.1", + "commit": "6639b2e742f41ca04b04d8c2436beb86d4e5b770", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -4860,18 +4992,21 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/gfmcsxrn8lc7nlvbjw8wl90xjb27nm7n-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.8.0.1", "closure": { "fromPath": "/nix/store/gfmcsxrn8lc7nlvbjw8wl90xjb27nm7n-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.8.0.1", "toPath": "/nix/store/x5pdck4c4py2scl1pxqpd7acs31rcw4k-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.8.0.1", "fromStore": "https://cache.iog.io" }, + "pname": "ouroboros-consensus-cardano-exe-db-analyser", "system": "x86_64-linux" }, "github:input-output-hk/cardano-node/6639b2e742f41ca04b04d8c2436beb86d4e5b770#hydraJobs.musl.db-synthesizer": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "0.8.0.1", - "rev": "6639b2e742f41ca04b04d8c2436beb86d4e5b770", + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.db-synthesizer", + "version": "0.8.0.1", + "commit": "6639b2e742f41ca04b04d8c2436beb86d4e5b770", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -4969,18 +5104,21 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/b3yvxl1li6khm4gam8s8i2i9mcz9cxrh-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.8.0.1", "closure": { "fromPath": "/nix/store/b3yvxl1li6khm4gam8s8i2i9mcz9cxrh-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.8.0.1", "toPath": "/nix/store/cqcfn86kmciri90m7c74pdf0qyyz9vsj-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.8.0.1", "fromStore": "https://cache.iog.io" }, + "pname": "ouroboros-consensus-cardano-exe-db-synthesizer", "system": "x86_64-linux" }, "github:input-output-hk/cardano-node/6639b2e742f41ca04b04d8c2436beb86d4e5b770#hydraJobs.musl.db-truncater": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "0.8.0.1", - "rev": "6639b2e742f41ca04b04d8c2436beb86d4e5b770", + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.db-truncater", + "version": "0.8.0.1", + "commit": "6639b2e742f41ca04b04d8c2436beb86d4e5b770", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -5078,18 +5216,21 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/jknhi8sgpwyn5sjb3xgyq4pgjk4g5dw8-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.8.0.1", "closure": { "fromPath": "/nix/store/jknhi8sgpwyn5sjb3xgyq4pgjk4g5dw8-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.8.0.1", "toPath": "/nix/store/lzdxdinvf45rq2nnan9fqhx3pcwyzhn3-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.8.0.1", "fromStore": "https://cache.iog.io" }, + "pname": "ouroboros-consensus-cardano-exe-db-truncater", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/a29ee68ba2c850cd50be39a3105ef191cfbc41d5#hydraJobs.musl.bech32": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "1.1.4.1", - "rev": "a29ee68ba2c850cd50be39a3105ef191cfbc41d5", + "github:input-output-hk/cardano-node/69a117b7be3db0f4ce6d9fc5cd4c16a2a409dcb8#hydraJobs.musl.bech32": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.bech32", + "version": "1.1.2", + "commit": "69a117b7be3db0f4ce6d9fc5cd4c16a2a409dcb8", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -5106,7 +5247,7 @@ } ], "mainProgram": "bech32", - "name": "bech32-exe-bech32-1.1.4.1", + "name": "bech32-exe-bech32-1.1.2", "outputsToInstall": [ "out" ], @@ -5123,14 +5264,13 @@ "i686-genode", "x86_64-genode", "x86_64-solaris", - "javascript-ghcjs", + "js-ghcjs", "aarch64-linux", "armv5tel-linux", "armv6l-linux", "armv7a-linux", "armv7l-linux", "i686-linux", - "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -5183,27 +5323,30 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", + "position": "/nix/store/yakw15a4hbmmw9r0l0rxxq0jv6fiwb4p-source/builder/comp-builder.nix:364", "unfree": false, "unsupported": false }, + "output": "/nix/store/4d9cv8h49j7a7yzrf2j5nngvy6pfaj47-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", "closure": { - "fromPath": "/nix/store/b0h1ha50p0s26ypkqbwkv8z50vi0sin2-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", - "toPath": "/nix/store/lswavbyb64yj8vn5850bfzy3gjq3bzhq-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", + "fromPath": "/nix/store/4d9cv8h49j7a7yzrf2j5nngvy6pfaj47-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", + "toPath": "/nix/store/gmmcdy98gyk58bahvblx51821kc203kz-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", "fromStore": "https://cache.iog.io" }, + "pname": "bech32-exe-bech32", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/a29ee68ba2c850cd50be39a3105ef191cfbc41d5#hydraJobs.musl.cardano-cli": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "", - "rev": "a29ee68ba2c850cd50be39a3105ef191cfbc41d5", + "github:input-output-hk/cardano-node/6f79e5c3ea109a70cd01910368e011635767305a#hydraJobs.musl.bech32": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.bech32", + "version": "1.1.2", + "commit": "6f79e5c3ea109a70cd01910368e011635767305a", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "The Cardano command-line interface", - "homepage": "", + "description": "Implementation of the Bech32 cryptocurrency address format (BIP 0173).", + "homepage": "https://github.com/input-output-hk/bech32", "insecure": false, "license": [ { @@ -5214,8 +5357,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "cardano-cli", - "name": "cardano-cli-exe-cardano-cli-8.5.0.0", + "mainProgram": "bech32", + "name": "bech32-exe-bech32-1.1.2", "outputsToInstall": [ "out" ], @@ -5239,7 +5382,6 @@ "armv7a-linux", "armv7l-linux", "i686-linux", - "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -5292,27 +5434,30 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", + "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", "unfree": false, "unsupported": false }, + "output": "/nix/store/49xsfa3hb1fcxrzxadbvcasdmsfvlpag-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", "closure": { - "fromPath": "/nix/store/gx72szax9ap3vnw7ww8ww6rxjma3fcjf-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.5.0.0", - "toPath": "/nix/store/377wqj965cz1js45dhflzi8hgy32fc6d-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.5.0.0", + "fromPath": "/nix/store/49xsfa3hb1fcxrzxadbvcasdmsfvlpag-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", + "toPath": "/nix/store/28l19bqvz9x0mwwsl3fiwc08211rlxx3-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", "fromStore": "https://cache.iog.io" }, + "pname": "bech32-exe-bech32", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/a29ee68ba2c850cd50be39a3105ef191cfbc41d5#hydraJobs.musl.cardano-node": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "", - "rev": "a29ee68ba2c850cd50be39a3105ef191cfbc41d5", + "github:input-output-hk/cardano-node/8762a10efe3f9f97939e3cb05edaf04250456702#hydraJobs.musl.bech32": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.bech32", + "version": "1.1.2", + "commit": "8762a10efe3f9f97939e3cb05edaf04250456702", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "The cardano full node", - "homepage": "", + "description": "Implementation of the Bech32 cryptocurrency address format (BIP 0173).", + "homepage": "https://github.com/input-output-hk/bech32", "insecure": false, "license": [ { @@ -5323,8 +5468,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "cardano-node", - "name": "cardano-node-exe-cardano-node-8.2.1", + "mainProgram": "bech32", + "name": "bech32-exe-bech32-1.1.2", "outputsToInstall": [ "out" ], @@ -5335,20 +5480,19 @@ "i686-darwin", "aarch64-darwin", "armv7a-darwin", - "i686-freebsd13", - "x86_64-freebsd13", + "i686-freebsd", + "x86_64-freebsd", "aarch64-genode", "i686-genode", "x86_64-genode", "x86_64-solaris", - "javascript-ghcjs", + "js-ghcjs", "aarch64-linux", "armv5tel-linux", "armv6l-linux", "armv7a-linux", "armv7l-linux", "i686-linux", - "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -5401,27 +5545,30 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", + "position": "/nix/store/wa8vwg7f7pqhqj8b75bgn73cz4j1q5vq-source/builder/comp-builder.nix:362", "unfree": false, "unsupported": false }, + "output": "/nix/store/jwd1nsq69qbly0yf9kss3dnjx1is179w-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", "closure": { - "fromPath": "/nix/store/msayvk7qjbnss4bgh1cb0k9m8m886pcq-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.2.1", - "toPath": "/nix/store/7mhp926iyjjy7n7b8c8vb9jc6g1ryfgk-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.2.1", + "fromPath": "/nix/store/jwd1nsq69qbly0yf9kss3dnjx1is179w-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", + "toPath": "/nix/store/pfzpk5bqzcjwz9a96ajmpilb4hybll1c-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", "fromStore": "https://cache.iog.io" }, + "pname": "bech32-exe-bech32", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/a29ee68ba2c850cd50be39a3105ef191cfbc41d5#hydraJobs.musl.cardano-submit-api": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "3.1.3", - "rev": "a29ee68ba2c850cd50be39a3105ef191cfbc41d5", + "github:input-output-hk/cardano-node/93c0307b33d4105156924b03a2316bea38e6d358#hydraJobs.musl.bech32": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.bech32", + "version": "1.1.2", + "commit": "93c0307b33d4105156924b03a2316bea38e6d358", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "A web server that allows transactions to be POSTed to the cardano chain", - "homepage": "https://github.com/input-output-hk/cardano-node", + "description": "Implementation of the Bech32 cryptocurrency address format (BIP 0173).", + "homepage": "https://github.com/input-output-hk/bech32", "insecure": false, "license": [ { @@ -5432,8 +5579,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "cardano-submit-api", - "name": "cardano-submit-api-exe-cardano-submit-api-3.1.3", + "mainProgram": "bech32", + "name": "bech32-exe-bech32-1.1.2", "outputsToInstall": [ "out" ], @@ -5457,7 +5604,6 @@ "armv7a-linux", "armv7l-linux", "i686-linux", - "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -5510,27 +5656,30 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", + "position": "/nix/store/897w6vwm1d7mkn31mp8nplqh6296g0m4-source/builder/comp-builder.nix:375", "unfree": false, "unsupported": false }, + "output": "/nix/store/49xsfa3hb1fcxrzxadbvcasdmsfvlpag-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", "closure": { - "fromPath": "/nix/store/vgplh7k9rf80gf2hd3m13qg33lnd33al-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.3", - "toPath": "/nix/store/izqqhy19l2nl6ri1advppd304bfs2rj1-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.3", + "fromPath": "/nix/store/49xsfa3hb1fcxrzxadbvcasdmsfvlpag-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", + "toPath": "/nix/store/28l19bqvz9x0mwwsl3fiwc08211rlxx3-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", "fromStore": "https://cache.iog.io" }, + "pname": "bech32-exe-bech32", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/a29ee68ba2c850cd50be39a3105ef191cfbc41d5#hydraJobs.musl.db-analyser": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "0.7.0.0", - "rev": "a29ee68ba2c850cd50be39a3105ef191cfbc41d5", + "github:input-output-hk/cardano-node/9a0898636a4ea13f720dc3c6c8789b27beeb37c9#hydraJobs.musl.bech32": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.bech32", + "version": "1.1.4.1", + "commit": "9a0898636a4ea13f720dc3c6c8789b27beeb37c9", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "The instantation of the Ouroboros consensus layer used by Cardano", - "homepage": "", + "description": "Implementation of the Bech32 cryptocurrency address format (BIP 0173).", + "homepage": "https://github.com/input-output-hk/bech32", "insecure": false, "license": [ { @@ -5541,8 +5690,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "db-analyser", - "name": "ouroboros-consensus-cardano-exe-db-analyser-0.7.0.0", + "mainProgram": "bech32", + "name": "bech32-exe-bech32-1.1.4.1", "outputsToInstall": [ "out" ], @@ -5623,22 +5772,25 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/b0h1ha50p0s26ypkqbwkv8z50vi0sin2-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", "closure": { - "fromPath": "/nix/store/a3mw7aqs74vgiimj9a8i8rsc1rns3h0n-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.7.0.0", - "toPath": "/nix/store/qjjk3fbagkmzmxa41h5n7gk0z793hvcz-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.7.0.0", + "fromPath": "/nix/store/b0h1ha50p0s26ypkqbwkv8z50vi0sin2-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", + "toPath": "/nix/store/lswavbyb64yj8vn5850bfzy3gjq3bzhq-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", "fromStore": "https://cache.iog.io" }, + "pname": "bech32-exe-bech32", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/a29ee68ba2c850cd50be39a3105ef191cfbc41d5#hydraJobs.musl.db-synthesizer": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "0.7.0.0", - "rev": "a29ee68ba2c850cd50be39a3105ef191cfbc41d5", + "github:input-output-hk/cardano-node/9a0898636a4ea13f720dc3c6c8789b27beeb37c9#hydraJobs.musl.cardano-cli": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.cardano-cli", + "version": "", + "commit": "9a0898636a4ea13f720dc3c6c8789b27beeb37c9", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "The instantation of the Ouroboros consensus layer used by Cardano", + "description": "The Cardano command-line interface", "homepage": "", "insecure": false, "license": [ @@ -5650,8 +5802,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "db-synthesizer", - "name": "ouroboros-consensus-cardano-exe-db-synthesizer-0.7.0.0", + "mainProgram": "cardano-cli", + "name": "cardano-cli-exe-cardano-cli-8.8.0.0", "outputsToInstall": [ "out" ], @@ -5732,22 +5884,25 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/43arb8cd8mivmnws6dqz0zc8526r28sd-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.8.0.0", "closure": { - "fromPath": "/nix/store/kqjjyqk4n9byqibbj5lv9a6xix2pafpr-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.7.0.0", - "toPath": "/nix/store/00idshjywkq3hfdggczngrycq4ssixb6-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.7.0.0", + "fromPath": "/nix/store/43arb8cd8mivmnws6dqz0zc8526r28sd-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.8.0.0", + "toPath": "/nix/store/18y38k597h4yzj3vfjx0nrcgxvsf4dpw-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.8.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.8.0.0", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/a29ee68ba2c850cd50be39a3105ef191cfbc41d5#hydraJobs.musl.db-truncater": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "0.7.0.0", - "rev": "a29ee68ba2c850cd50be39a3105ef191cfbc41d5", + "github:input-output-hk/cardano-node/9a0898636a4ea13f720dc3c6c8789b27beeb37c9#hydraJobs.musl.cardano-node": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.cardano-node", + "version": "", + "commit": "9a0898636a4ea13f720dc3c6c8789b27beeb37c9", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "The instantation of the Ouroboros consensus layer used by Cardano", + "description": "The cardano full node", "homepage": "", "insecure": false, "license": [ @@ -5759,8 +5914,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "db-truncater", - "name": "ouroboros-consensus-cardano-exe-db-truncater-0.7.0.0", + "mainProgram": "cardano-node", + "name": "cardano-node-exe-cardano-node-8.4.0", "outputsToInstall": [ "out" ], @@ -5841,23 +5996,26 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/hjbnk8b2213g9z8s9xqr4i1z54apimzg-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.4.0", "closure": { - "fromPath": "/nix/store/hx36205sq1plb3ni21rdinn4r6m5agnl-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.7.0.0", - "toPath": "/nix/store/axqycac0kncwdglxalxdd1x607sbqli8-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.7.0.0", + "fromPath": "/nix/store/hjbnk8b2213g9z8s9xqr4i1z54apimzg-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.4.0", + "toPath": "/nix/store/0jp003xdq2b9ksh4dm4qnn1qyqvz5hkc-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.4.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.4.0", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/408d8ae10a2792ace3a822e312433960e47de4e9#hydraJobs.musl.bech32": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "1.1.4.1", - "rev": "408d8ae10a2792ace3a822e312433960e47de4e9", + "github:input-output-hk/cardano-node/9a0898636a4ea13f720dc3c6c8789b27beeb37c9#hydraJobs.musl.cardano-submit-api": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.cardano-submit-api", + "version": "3.1.5", + "commit": "9a0898636a4ea13f720dc3c6c8789b27beeb37c9", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "Implementation of the Bech32 cryptocurrency address format (BIP 0173).", - "homepage": "https://github.com/input-output-hk/bech32", + "description": "A web server that allows transactions to be POSTed to the cardano chain", + "homepage": "https://github.com/input-output-hk/cardano-node", "insecure": false, "license": [ { @@ -5868,8 +6026,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "bech32", - "name": "bech32-exe-bech32-1.1.4.1", + "mainProgram": "cardano-submit-api", + "name": "cardano-submit-api-exe-cardano-submit-api-3.1.5", "outputsToInstall": [ "out" ], @@ -5893,6 +6051,7 @@ "armv7a-linux", "armv7l-linux", "i686-linux", + "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -5945,26 +6104,29 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", + "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", "unfree": false, "unsupported": false }, + "output": "/nix/store/48jx2apwrxphqz0fb6vlnx1mgm2pk37g-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.5", "closure": { - "fromPath": "/nix/store/spimgaj0l4ik4wdrz3c2n9k9xnjspymw-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", - "toPath": "/nix/store/8bcwq9xmmhpwjrwhqkdsz39vkq9lnjiy-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", + "fromPath": "/nix/store/48jx2apwrxphqz0fb6vlnx1mgm2pk37g-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.5", + "toPath": "/nix/store/h7489g3gmq6ngyzg36q4hagk6gkgyz96-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.5", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-submit-api-exe-cardano-submit-api", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/408d8ae10a2792ace3a822e312433960e47de4e9#hydraJobs.musl.cardano-cli": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "", - "rev": "408d8ae10a2792ace3a822e312433960e47de4e9", + "github:input-output-hk/cardano-node/9a0898636a4ea13f720dc3c6c8789b27beeb37c9#hydraJobs.musl.db-analyser": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.db-analyser", + "version": "0.9.0.0", + "commit": "9a0898636a4ea13f720dc3c6c8789b27beeb37c9", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "The Cardano command-line interface", + "description": "The instantation of the Ouroboros consensus layer used by Cardano", "homepage": "", "insecure": false, "license": [ @@ -5976,8 +6138,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "cardano-cli", - "name": "cardano-cli-exe-cardano-cli-8.4.0.0", + "mainProgram": "db-analyser", + "name": "ouroboros-consensus-cardano-exe-db-analyser-0.9.0.0", "outputsToInstall": [ "out" ], @@ -6001,6 +6163,7 @@ "armv7a-linux", "armv7l-linux", "i686-linux", + "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -6053,26 +6216,29 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", + "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", "unfree": false, "unsupported": false }, + "output": "/nix/store/kymv2638ma1mnypm38m17a2qbm31s30v-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.9.0.0", "closure": { - "fromPath": "/nix/store/v8iyxiqh3p0mbn8rp5s9c0ykv3a156n8-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.4.0.0", - "toPath": "/nix/store/0gvxzm0ccfqc2lkks00fpndw08rnbcb0-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.4.0.0", + "fromPath": "/nix/store/kymv2638ma1mnypm38m17a2qbm31s30v-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.9.0.0", + "toPath": "/nix/store/2n2xc4kh5rr1vvwchzfqjvi8p6md542v-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.9.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "ouroboros-consensus-cardano-exe-db-analyser", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/408d8ae10a2792ace3a822e312433960e47de4e9#hydraJobs.musl.cardano-node": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "", - "rev": "408d8ae10a2792ace3a822e312433960e47de4e9", + "github:input-output-hk/cardano-node/9a0898636a4ea13f720dc3c6c8789b27beeb37c9#hydraJobs.musl.db-synthesizer": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.db-synthesizer", + "version": "0.9.0.0", + "commit": "9a0898636a4ea13f720dc3c6c8789b27beeb37c9", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "The cardano full node", + "description": "The instantation of the Ouroboros consensus layer used by Cardano", "homepage": "", "insecure": false, "license": [ @@ -6084,8 +6250,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "cardano-node", - "name": "cardano-node-exe-cardano-node-8.2.0", + "mainProgram": "db-synthesizer", + "name": "ouroboros-consensus-cardano-exe-db-synthesizer-0.9.0.0", "outputsToInstall": [ "out" ], @@ -6109,6 +6275,7 @@ "armv7a-linux", "armv7l-linux", "i686-linux", + "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -6161,27 +6328,30 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", + "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", "unfree": false, "unsupported": false }, + "output": "/nix/store/8w51g0msd03x8khfrykz4dmgpxmc5r42-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.9.0.0", "closure": { - "fromPath": "/nix/store/cgas0zzz9j3k9di0dps8ymlcrhhjma8j-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.2.0", - "toPath": "/nix/store/mvmpax6af11937kbm1gv4wbf78n334zh-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.2.0", + "fromPath": "/nix/store/8w51g0msd03x8khfrykz4dmgpxmc5r42-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.9.0.0", + "toPath": "/nix/store/i0bwznx0jvdwbzfsdrx8d5mv1ck6w54y-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.9.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "ouroboros-consensus-cardano-exe-db-synthesizer", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/408d8ae10a2792ace3a822e312433960e47de4e9#hydraJobs.musl.cardano-submit-api": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "3.1.3", - "rev": "408d8ae10a2792ace3a822e312433960e47de4e9", + "github:input-output-hk/cardano-node/9a0898636a4ea13f720dc3c6c8789b27beeb37c9#hydraJobs.musl.db-truncater": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.db-truncater", + "version": "0.9.0.0", + "commit": "9a0898636a4ea13f720dc3c6c8789b27beeb37c9", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "A web server that allows transactions to be POSTed to the cardano chain", - "homepage": "https://github.com/input-output-hk/cardano-node", + "description": "The instantation of the Ouroboros consensus layer used by Cardano", + "homepage": "", "insecure": false, "license": [ { @@ -6192,8 +6362,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "cardano-submit-api", - "name": "cardano-submit-api-exe-cardano-submit-api-3.1.3", + "mainProgram": "db-truncater", + "name": "ouroboros-consensus-cardano-exe-db-truncater-0.9.0.0", "outputsToInstall": [ "out" ], @@ -6217,6 +6387,7 @@ "armv7a-linux", "armv7l-linux", "i686-linux", + "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -6269,27 +6440,30 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", + "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", "unfree": false, "unsupported": false }, + "output": "/nix/store/2w7y0yrk6a6gphbckzwgccyznm0waxzi-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.9.0.0", "closure": { - "fromPath": "/nix/store/8k2dp0bbyng5z12s37nl58cswl3zpnaq-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.3", - "toPath": "/nix/store/nhyf439h7qnrs1lws8gjj1vpf1w7mc3n-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.3", + "fromPath": "/nix/store/2w7y0yrk6a6gphbckzwgccyznm0waxzi-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.9.0.0", + "toPath": "/nix/store/088qsyr58sgsrd0k13j97v4k88ljzhgr-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.9.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "ouroboros-consensus-cardano-exe-db-truncater", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/408d8ae10a2792ace3a822e312433960e47de4e9#hydraJobs.musl.db-analyser": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "0.7.0.0", - "rev": "408d8ae10a2792ace3a822e312433960e47de4e9", + "github:input-output-hk/cardano-node/a29ee68ba2c850cd50be39a3105ef191cfbc41d5#hydraJobs.musl.bech32": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.bech32", + "version": "1.1.4.1", + "commit": "a29ee68ba2c850cd50be39a3105ef191cfbc41d5", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "The instantation of the Ouroboros consensus layer used by Cardano", - "homepage": "", + "description": "Implementation of the Bech32 cryptocurrency address format (BIP 0173).", + "homepage": "https://github.com/input-output-hk/bech32", "insecure": false, "license": [ { @@ -6300,8 +6474,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "db-analyser", - "name": "ouroboros-consensus-cardano-exe-db-analyser-0.7.0.0", + "mainProgram": "bech32", + "name": "bech32-exe-bech32-1.1.4.1", "outputsToInstall": [ "out" ], @@ -6325,6 +6499,7 @@ "armv7a-linux", "armv7l-linux", "i686-linux", + "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -6377,26 +6552,29 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", + "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", "unfree": false, "unsupported": false }, + "output": "/nix/store/b0h1ha50p0s26ypkqbwkv8z50vi0sin2-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", "closure": { - "fromPath": "/nix/store/20cb0w9wwc2jq8a4071zddav27sd1jps-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.7.0.0", - "toPath": "/nix/store/9xs6jgx022n0nscf1qmyawz11srag16j-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.7.0.0", + "fromPath": "/nix/store/b0h1ha50p0s26ypkqbwkv8z50vi0sin2-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", + "toPath": "/nix/store/lswavbyb64yj8vn5850bfzy3gjq3bzhq-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.4.1", "fromStore": "https://cache.iog.io" }, + "pname": "bech32-exe-bech32", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/408d8ae10a2792ace3a822e312433960e47de4e9#hydraJobs.musl.db-synthesizer": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "0.7.0.0", - "rev": "408d8ae10a2792ace3a822e312433960e47de4e9", + "github:input-output-hk/cardano-node/a29ee68ba2c850cd50be39a3105ef191cfbc41d5#hydraJobs.musl.cardano-cli": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.cardano-cli", + "version": "", + "commit": "a29ee68ba2c850cd50be39a3105ef191cfbc41d5", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "The instantation of the Ouroboros consensus layer used by Cardano", + "description": "The Cardano command-line interface", "homepage": "", "insecure": false, "license": [ @@ -6408,8 +6586,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "db-synthesizer", - "name": "ouroboros-consensus-cardano-exe-db-synthesizer-0.7.0.0", + "mainProgram": "cardano-cli", + "name": "cardano-cli-exe-cardano-cli-8.5.0.0", "outputsToInstall": [ "out" ], @@ -6433,6 +6611,7 @@ "armv7a-linux", "armv7l-linux", "i686-linux", + "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -6485,26 +6664,29 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", + "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", "unfree": false, "unsupported": false }, + "output": "/nix/store/gx72szax9ap3vnw7ww8ww6rxjma3fcjf-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.5.0.0", "closure": { - "fromPath": "/nix/store/6pil61sq6lg8iddcdhy4mi4q0ijwslnj-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.7.0.0", - "toPath": "/nix/store/5n7yxx9llg9kslz69rn9vsx0bxqajx95-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.7.0.0", + "fromPath": "/nix/store/gx72szax9ap3vnw7ww8ww6rxjma3fcjf-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.5.0.0", + "toPath": "/nix/store/377wqj965cz1js45dhflzi8hgy32fc6d-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.5.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.5.0.0", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/408d8ae10a2792ace3a822e312433960e47de4e9#hydraJobs.musl.db-truncater": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "0.7.0.0", - "rev": "408d8ae10a2792ace3a822e312433960e47de4e9", + "github:input-output-hk/cardano-node/a29ee68ba2c850cd50be39a3105ef191cfbc41d5#hydraJobs.musl.cardano-node": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.cardano-node", + "version": "", + "commit": "a29ee68ba2c850cd50be39a3105ef191cfbc41d5", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "The instantation of the Ouroboros consensus layer used by Cardano", + "description": "The cardano full node", "homepage": "", "insecure": false, "license": [ @@ -6516,8 +6698,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "db-truncater", - "name": "ouroboros-consensus-cardano-exe-db-truncater-0.7.0.0", + "mainProgram": "cardano-node", + "name": "cardano-node-exe-cardano-node-8.2.1", "outputsToInstall": [ "out" ], @@ -6541,6 +6723,7 @@ "armv7a-linux", "armv7l-linux", "i686-linux", + "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -6593,27 +6776,30 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", + "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", "unfree": false, "unsupported": false }, + "output": "/nix/store/msayvk7qjbnss4bgh1cb0k9m8m886pcq-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.2.1", "closure": { - "fromPath": "/nix/store/nwbjjgnh1igl4lxllrlvpmhnb220n4r3-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.7.0.0", - "toPath": "/nix/store/ic1q5zxi1spnh194d7zsds4plg389fbi-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.7.0.0", + "fromPath": "/nix/store/msayvk7qjbnss4bgh1cb0k9m8m886pcq-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.2.1", + "toPath": "/nix/store/7mhp926iyjjy7n7b8c8vb9jc6g1ryfgk-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.2.1", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.2.1", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/d2d90b48c5577b4412d5c9c9968b55f8ab4b9767#hydraJobs.musl.bech32": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "1.1.2", - "rev": "d2d90b48c5577b4412d5c9c9968b55f8ab4b9767", + "github:input-output-hk/cardano-node/a29ee68ba2c850cd50be39a3105ef191cfbc41d5#hydraJobs.musl.cardano-submit-api": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.cardano-submit-api", + "version": "3.1.3", + "commit": "a29ee68ba2c850cd50be39a3105ef191cfbc41d5", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "Implementation of the Bech32 cryptocurrency address format (BIP 0173).", - "homepage": "https://github.com/input-output-hk/bech32", + "description": "A web server that allows transactions to be POSTed to the cardano chain", + "homepage": "https://github.com/input-output-hk/cardano-node", "insecure": false, "license": [ { @@ -6624,8 +6810,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "bech32", - "name": "bech32-exe-bech32-1.1.2", + "mainProgram": "cardano-submit-api", + "name": "cardano-submit-api-exe-cardano-submit-api-3.1.3", "outputsToInstall": [ "out" ], @@ -6649,6 +6835,7 @@ "armv7a-linux", "armv7l-linux", "i686-linux", + "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -6701,26 +6888,29 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", + "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", "unfree": false, "unsupported": false }, + "output": "/nix/store/vgplh7k9rf80gf2hd3m13qg33lnd33al-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.3", "closure": { - "fromPath": "/nix/store/49xsfa3hb1fcxrzxadbvcasdmsfvlpag-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", - "toPath": "/nix/store/28l19bqvz9x0mwwsl3fiwc08211rlxx3-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", + "fromPath": "/nix/store/vgplh7k9rf80gf2hd3m13qg33lnd33al-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.3", + "toPath": "/nix/store/izqqhy19l2nl6ri1advppd304bfs2rj1-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.3", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-submit-api-exe-cardano-submit-api", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/d2d90b48c5577b4412d5c9c9968b55f8ab4b9767#hydraJobs.musl.cardano-cli": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "", - "rev": "d2d90b48c5577b4412d5c9c9968b55f8ab4b9767", + "github:input-output-hk/cardano-node/a29ee68ba2c850cd50be39a3105ef191cfbc41d5#hydraJobs.musl.db-analyser": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.db-analyser", + "version": "0.7.0.0", + "commit": "a29ee68ba2c850cd50be39a3105ef191cfbc41d5", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "The Cardano command-line interface", + "description": "The instantation of the Ouroboros consensus layer used by Cardano", "homepage": "", "insecure": false, "license": [ @@ -6732,8 +6922,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "cardano-cli", - "name": "cardano-cli-exe-cardano-cli-8.1.2", + "mainProgram": "db-analyser", + "name": "ouroboros-consensus-cardano-exe-db-analyser-0.7.0.0", "outputsToInstall": [ "out" ], @@ -6757,6 +6947,7 @@ "armv7a-linux", "armv7l-linux", "i686-linux", + "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -6809,26 +7000,29 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", + "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", "unfree": false, "unsupported": false }, + "output": "/nix/store/a3mw7aqs74vgiimj9a8i8rsc1rns3h0n-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.7.0.0", "closure": { - "fromPath": "/nix/store/xkmja6k75maims585a2f0v8l4cinqg5b-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.1.2", - "toPath": "/nix/store/rp5ckj64wpdydg7dk198qqk09y4zjj6l-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.1.2", + "fromPath": "/nix/store/a3mw7aqs74vgiimj9a8i8rsc1rns3h0n-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.7.0.0", + "toPath": "/nix/store/qjjk3fbagkmzmxa41h5n7gk0z793hvcz-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.7.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "ouroboros-consensus-cardano-exe-db-analyser", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/d2d90b48c5577b4412d5c9c9968b55f8ab4b9767#hydraJobs.musl.cardano-node": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "", - "rev": "d2d90b48c5577b4412d5c9c9968b55f8ab4b9767", + "github:input-output-hk/cardano-node/a29ee68ba2c850cd50be39a3105ef191cfbc41d5#hydraJobs.musl.db-synthesizer": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.db-synthesizer", + "version": "0.7.0.0", + "commit": "a29ee68ba2c850cd50be39a3105ef191cfbc41d5", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "The cardano full node", + "description": "The instantation of the Ouroboros consensus layer used by Cardano", "homepage": "", "insecure": false, "license": [ @@ -6840,8 +7034,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "cardano-node", - "name": "cardano-node-exe-cardano-node-8.1.2", + "mainProgram": "db-synthesizer", + "name": "ouroboros-consensus-cardano-exe-db-synthesizer-0.7.0.0", "outputsToInstall": [ "out" ], @@ -6865,6 +7059,7 @@ "armv7a-linux", "armv7l-linux", "i686-linux", + "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -6917,27 +7112,30 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", + "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", "unfree": false, "unsupported": false }, + "output": "/nix/store/kqjjyqk4n9byqibbj5lv9a6xix2pafpr-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.7.0.0", "closure": { - "fromPath": "/nix/store/sjadpb6qigribs8lq47nlgg8xxs6w2l2-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.1.2", - "toPath": "/nix/store/6h0r637n766d6vwycbhsq86n9945f6ia-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.1.2", + "fromPath": "/nix/store/kqjjyqk4n9byqibbj5lv9a6xix2pafpr-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.7.0.0", + "toPath": "/nix/store/00idshjywkq3hfdggczngrycq4ssixb6-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.7.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "ouroboros-consensus-cardano-exe-db-synthesizer", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/d2d90b48c5577b4412d5c9c9968b55f8ab4b9767#hydraJobs.musl.cardano-submit-api": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "3.1.2", - "rev": "d2d90b48c5577b4412d5c9c9968b55f8ab4b9767", + "github:input-output-hk/cardano-node/a29ee68ba2c850cd50be39a3105ef191cfbc41d5#hydraJobs.musl.db-truncater": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.db-truncater", + "version": "0.7.0.0", + "commit": "a29ee68ba2c850cd50be39a3105ef191cfbc41d5", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "A web server that allows transactions to be POSTed to the cardano chain", - "homepage": "https://github.com/input-output-hk/cardano-node", + "description": "The instantation of the Ouroboros consensus layer used by Cardano", + "homepage": "", "insecure": false, "license": [ { @@ -6948,8 +7146,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "cardano-submit-api", - "name": "cardano-submit-api-exe-cardano-submit-api-3.1.2", + "mainProgram": "db-truncater", + "name": "ouroboros-consensus-cardano-exe-db-truncater-0.7.0.0", "outputsToInstall": [ "out" ], @@ -6973,6 +7171,7 @@ "armv7a-linux", "armv7l-linux", "i686-linux", + "loongarch64-linux", "m68k-linux", "microblaze-linux", "microblazeel-linux", @@ -7025,27 +7224,30 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", + "position": "/nix/store/ghsz9f8g04mqg3kh4jw2adrggf1y5pjh-source/builder/comp-builder.nix:378", "unfree": false, "unsupported": false }, + "output": "/nix/store/hx36205sq1plb3ni21rdinn4r6m5agnl-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.7.0.0", "closure": { - "fromPath": "/nix/store/lq2dy8fr92vfikxgllqj772hi16f124m-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.2", - "toPath": "/nix/store/0j321vpkysvz71zrrnxcz50ql0rmjl72-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.2", + "fromPath": "/nix/store/hx36205sq1plb3ni21rdinn4r6m5agnl-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.7.0.0", + "toPath": "/nix/store/axqycac0kncwdglxalxdd1x607sbqli8-ouroboros-consensus-cardano-exe-db-truncater-x86_64-unknown-linux-musl-0.7.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "ouroboros-consensus-cardano-exe-db-truncater", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/d2d90b48c5577b4412d5c9c9968b55f8ab4b9767#hydraJobs.musl.db-analyser": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "0.6.0.0", - "rev": "d2d90b48c5577b4412d5c9c9968b55f8ab4b9767", + "github:input-output-hk/cardano-node/d2d90b48c5577b4412d5c9c9968b55f8ab4b9767#hydraJobs.musl.bech32": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.bech32", + "version": "1.1.2", + "commit": "d2d90b48c5577b4412d5c9c9968b55f8ab4b9767", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "The instantation of the Ouroboros consensus layer used by Cardano", - "homepage": "", + "description": "Implementation of the Bech32 cryptocurrency address format (BIP 0173).", + "homepage": "https://github.com/input-output-hk/bech32", "insecure": false, "license": [ { @@ -7056,8 +7258,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "db-analyser", - "name": "ouroboros-consensus-cardano-exe-db-analyser-0.6.0.0", + "mainProgram": "bech32", + "name": "bech32-exe-bech32-1.1.2", "outputsToInstall": [ "out" ], @@ -7137,22 +7339,25 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/49xsfa3hb1fcxrzxadbvcasdmsfvlpag-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", "closure": { - "fromPath": "/nix/store/18l8cq330jn1gh4hng6l0w4s7995rqd1-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.6.0.0", - "toPath": "/nix/store/ndnjswhayw8lwb021h8mmp2rnr0y5byk-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.6.0.0", + "fromPath": "/nix/store/49xsfa3hb1fcxrzxadbvcasdmsfvlpag-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", + "toPath": "/nix/store/28l19bqvz9x0mwwsl3fiwc08211rlxx3-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", "fromStore": "https://cache.iog.io" }, + "pname": "bech32-exe-bech32", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/d2d90b48c5577b4412d5c9c9968b55f8ab4b9767#hydraJobs.musl.db-synthesizer": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "0.6.0.0", - "rev": "d2d90b48c5577b4412d5c9c9968b55f8ab4b9767", + "github:input-output-hk/cardano-node/d2d90b48c5577b4412d5c9c9968b55f8ab4b9767#hydraJobs.musl.cardano-cli": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.cardano-cli", + "version": "", + "commit": "d2d90b48c5577b4412d5c9c9968b55f8ab4b9767", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "The instantation of the Ouroboros consensus layer used by Cardano", + "description": "The Cardano command-line interface", "homepage": "", "insecure": false, "license": [ @@ -7164,8 +7369,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "db-synthesizer", - "name": "ouroboros-consensus-cardano-exe-db-synthesizer-0.6.0.0", + "mainProgram": "cardano-cli", + "name": "cardano-cli-exe-cardano-cli-8.1.2", "outputsToInstall": [ "out" ], @@ -7245,23 +7450,26 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/xkmja6k75maims585a2f0v8l4cinqg5b-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.1.2", "closure": { - "fromPath": "/nix/store/s8msd8pjk15l1y8pf42k8j1kc232fjwx-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.6.0.0", - "toPath": "/nix/store/rjvp18x1r8fsj8cfqhcf49h83x61yg23-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.6.0.0", + "fromPath": "/nix/store/xkmja6k75maims585a2f0v8l4cinqg5b-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.1.2", + "toPath": "/nix/store/rp5ckj64wpdydg7dk198qqk09y4zjj6l-cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.1.2", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-cli-exe-cardano-cli-x86_64-unknown-linux-musl-8.1.2", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/6f79e5c3ea109a70cd01910368e011635767305a#hydraJobs.musl.bech32": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "1.1.2", - "rev": "6f79e5c3ea109a70cd01910368e011635767305a", + "github:input-output-hk/cardano-node/d2d90b48c5577b4412d5c9c9968b55f8ab4b9767#hydraJobs.musl.cardano-node": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.cardano-node", + "version": "", + "commit": "d2d90b48c5577b4412d5c9c9968b55f8ab4b9767", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "Implementation of the Bech32 cryptocurrency address format (BIP 0173).", - "homepage": "https://github.com/input-output-hk/bech32", + "description": "The cardano full node", + "homepage": "", "insecure": false, "license": [ { @@ -7272,8 +7480,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "bech32", - "name": "bech32-exe-bech32-1.1.2", + "mainProgram": "cardano-node", + "name": "cardano-node-exe-cardano-node-8.1.2", "outputsToInstall": [ "out" ], @@ -7353,23 +7561,26 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/sjadpb6qigribs8lq47nlgg8xxs6w2l2-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.1.2", "closure": { - "fromPath": "/nix/store/49xsfa3hb1fcxrzxadbvcasdmsfvlpag-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", - "toPath": "/nix/store/28l19bqvz9x0mwwsl3fiwc08211rlxx3-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", + "fromPath": "/nix/store/sjadpb6qigribs8lq47nlgg8xxs6w2l2-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.1.2", + "toPath": "/nix/store/6h0r637n766d6vwycbhsq86n9945f6ia-cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.1.2", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-node-exe-cardano-node-x86_64-unknown-linux-musl-8.1.2", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/93c0307b33d4105156924b03a2316bea38e6d358#hydraJobs.musl.bech32": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "1.1.2", - "rev": "93c0307b33d4105156924b03a2316bea38e6d358", + "github:input-output-hk/cardano-node/d2d90b48c5577b4412d5c9c9968b55f8ab4b9767#hydraJobs.musl.cardano-submit-api": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.cardano-submit-api", + "version": "3.1.2", + "commit": "d2d90b48c5577b4412d5c9c9968b55f8ab4b9767", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "Implementation of the Bech32 cryptocurrency address format (BIP 0173).", - "homepage": "https://github.com/input-output-hk/bech32", + "description": "A web server that allows transactions to be POSTed to the cardano chain", + "homepage": "https://github.com/input-output-hk/cardano-node", "insecure": false, "license": [ { @@ -7380,8 +7591,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "bech32", - "name": "bech32-exe-bech32-1.1.2", + "mainProgram": "cardano-submit-api", + "name": "cardano-submit-api-exe-cardano-submit-api-3.1.2", "outputsToInstall": [ "out" ], @@ -7457,27 +7668,30 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/897w6vwm1d7mkn31mp8nplqh6296g0m4-source/builder/comp-builder.nix:375", + "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", "unfree": false, "unsupported": false }, + "output": "/nix/store/lq2dy8fr92vfikxgllqj772hi16f124m-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.2", "closure": { - "fromPath": "/nix/store/49xsfa3hb1fcxrzxadbvcasdmsfvlpag-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", - "toPath": "/nix/store/28l19bqvz9x0mwwsl3fiwc08211rlxx3-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", + "fromPath": "/nix/store/lq2dy8fr92vfikxgllqj772hi16f124m-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.2", + "toPath": "/nix/store/0j321vpkysvz71zrrnxcz50ql0rmjl72-cardano-submit-api-exe-cardano-submit-api-x86_64-unknown-linux-musl-3.1.2", "fromStore": "https://cache.iog.io" }, + "pname": "cardano-submit-api-exe-cardano-submit-api", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/69a117b7be3db0f4ce6d9fc5cd4c16a2a409dcb8#hydraJobs.musl.bech32": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "1.1.2", - "rev": "69a117b7be3db0f4ce6d9fc5cd4c16a2a409dcb8", + "github:input-output-hk/cardano-node/d2d90b48c5577b4412d5c9c9968b55f8ab4b9767#hydraJobs.musl.db-analyser": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.db-analyser", + "version": "0.6.0.0", + "commit": "d2d90b48c5577b4412d5c9c9968b55f8ab4b9767", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "Implementation of the Bech32 cryptocurrency address format (BIP 0173).", - "homepage": "https://github.com/input-output-hk/bech32", + "description": "The instantation of the Ouroboros consensus layer used by Cardano", + "homepage": "", "insecure": false, "license": [ { @@ -7488,8 +7702,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "bech32", - "name": "bech32-exe-bech32-1.1.2", + "mainProgram": "db-analyser", + "name": "ouroboros-consensus-cardano-exe-db-analyser-0.6.0.0", "outputsToInstall": [ "out" ], @@ -7506,7 +7720,7 @@ "i686-genode", "x86_64-genode", "x86_64-solaris", - "js-ghcjs", + "javascript-ghcjs", "aarch64-linux", "armv5tel-linux", "armv6l-linux", @@ -7565,27 +7779,30 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/yakw15a4hbmmw9r0l0rxxq0jv6fiwb4p-source/builder/comp-builder.nix:364", + "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", "unfree": false, "unsupported": false }, + "output": "/nix/store/18l8cq330jn1gh4hng6l0w4s7995rqd1-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.6.0.0", "closure": { - "fromPath": "/nix/store/4d9cv8h49j7a7yzrf2j5nngvy6pfaj47-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", - "toPath": "/nix/store/gmmcdy98gyk58bahvblx51821kc203kz-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", + "fromPath": "/nix/store/18l8cq330jn1gh4hng6l0w4s7995rqd1-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.6.0.0", + "toPath": "/nix/store/ndnjswhayw8lwb021h8mmp2rnr0y5byk-ouroboros-consensus-cardano-exe-db-analyser-x86_64-unknown-linux-musl-0.6.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "ouroboros-consensus-cardano-exe-db-analyser", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/f0b4ac897dcbefba9fa0d247b204a24543cf55f6#hydraJobs.musl.bech32": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "1.1.2", - "rev": "f0b4ac897dcbefba9fa0d247b204a24543cf55f6", + "github:input-output-hk/cardano-node/d2d90b48c5577b4412d5c9c9968b55f8ab4b9767#hydraJobs.musl.db-synthesizer": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.db-synthesizer", + "version": "0.6.0.0", + "commit": "d2d90b48c5577b4412d5c9c9968b55f8ab4b9767", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, - "description": "Implementation of the Bech32 cryptocurrency address format (BIP 0173).", - "homepage": "https://github.com/input-output-hk/bech32", + "description": "The instantation of the Ouroboros consensus layer used by Cardano", + "homepage": "", "insecure": false, "license": [ { @@ -7596,8 +7813,8 @@ "url": "https://spdx.org/licenses/Apache-2.0.html" } ], - "mainProgram": "bech32", - "name": "bech32-exe-bech32-1.1.2", + "mainProgram": "db-synthesizer", + "name": "ouroboros-consensus-cardano-exe-db-synthesizer-0.6.0.0", "outputsToInstall": [ "out" ], @@ -7614,7 +7831,7 @@ "i686-genode", "x86_64-genode", "x86_64-solaris", - "js-ghcjs", + "javascript-ghcjs", "aarch64-linux", "armv5tel-linux", "armv6l-linux", @@ -7673,22 +7890,25 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/451lh28lxcjcmhgswwziw1v2ljd05f9m-source/builder/comp-builder.nix:364", + "position": "/nix/store/vy4ri0gf9vs3xhw23i0bwvsqy66k80l5-source/builder/comp-builder.nix:375", "unfree": false, "unsupported": false }, + "output": "/nix/store/s8msd8pjk15l1y8pf42k8j1kc232fjwx-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.6.0.0", "closure": { - "fromPath": "/nix/store/yrjnyb099jimr4n57s68as1wbdia6ri9-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", - "toPath": "/nix/store/sapi7280yd6ll5d0f8g6vhirc9c1fmpz-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", + "fromPath": "/nix/store/s8msd8pjk15l1y8pf42k8j1kc232fjwx-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.6.0.0", + "toPath": "/nix/store/rjvp18x1r8fsj8cfqhcf49h83x61yg23-ouroboros-consensus-cardano-exe-db-synthesizer-x86_64-unknown-linux-musl-0.6.0.0", "fromStore": "https://cache.iog.io" }, + "pname": "ouroboros-consensus-cardano-exe-db-synthesizer", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/f143d305acf65ed0c788236d8f26d12e197896d5#hydraJobs.musl.bech32": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "1.1.2", - "rev": "f143d305acf65ed0c788236d8f26d12e197896d5", + "github:input-output-hk/cardano-node/f0b4ac897dcbefba9fa0d247b204a24543cf55f6#hydraJobs.musl.bech32": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.bech32", + "version": "1.1.2", + "commit": "f0b4ac897dcbefba9fa0d247b204a24543cf55f6", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -7716,8 +7936,8 @@ "i686-darwin", "aarch64-darwin", "armv7a-darwin", - "i686-freebsd", - "x86_64-freebsd", + "i686-freebsd13", + "x86_64-freebsd13", "aarch64-genode", "i686-genode", "x86_64-genode", @@ -7781,22 +8001,25 @@ "x86_64-windows", "i686-windows" ], - "position": "/nix/store/wa8vwg7f7pqhqj8b75bgn73cz4j1q5vq-source/builder/comp-builder.nix:362", + "position": "/nix/store/451lh28lxcjcmhgswwziw1v2ljd05f9m-source/builder/comp-builder.nix:364", "unfree": false, "unsupported": false }, + "output": "/nix/store/yrjnyb099jimr4n57s68as1wbdia6ri9-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", "closure": { - "fromPath": "/nix/store/jwd1nsq69qbly0yf9kss3dnjx1is179w-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", - "toPath": "/nix/store/pfzpk5bqzcjwz9a96ajmpilb4hybll1c-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", + "fromPath": "/nix/store/yrjnyb099jimr4n57s68as1wbdia6ri9-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", + "toPath": "/nix/store/sapi7280yd6ll5d0f8g6vhirc9c1fmpz-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", "fromStore": "https://cache.iog.io" }, + "pname": "bech32-exe-bech32", "system": "x86_64-linux" }, - "github:input-output-hk/cardano-node/8762a10efe3f9f97939e3cb05edaf04250456702#hydraJobs.musl.bech32": { - "org": "input-output-hk", - "repo": "cardano-node", - "tag": "1.1.2", - "rev": "8762a10efe3f9f97939e3cb05edaf04250456702", + "github:input-output-hk/cardano-node/f143d305acf65ed0c788236d8f26d12e197896d5#hydraJobs.musl.bech32": { + "name": "github:input-output-hk/cardano-node/${tag}#hydraJobs.musl.bech32", + "version": "1.1.2", + "commit": "f143d305acf65ed0c788236d8f26d12e197896d5", + "org_name": "input-output-hk", + "repo_name": "cardano-node", "meta": { "available": true, "broken": false, @@ -7893,11 +8116,13 @@ "unfree": false, "unsupported": false }, + "output": "/nix/store/jwd1nsq69qbly0yf9kss3dnjx1is179w-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", "closure": { "fromPath": "/nix/store/jwd1nsq69qbly0yf9kss3dnjx1is179w-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", "toPath": "/nix/store/pfzpk5bqzcjwz9a96ajmpilb4hybll1c-bech32-exe-bech32-x86_64-unknown-linux-musl-1.1.2", "fromStore": "https://cache.iog.io" }, + "pname": "bech32-exe-bech32", "system": "x86_64-linux" } } \ No newline at end of file diff --git a/packages.rb b/packages.rb deleted file mode 100755 index da9b955..0000000 --- a/packages.rb +++ /dev/null @@ -1,286 +0,0 @@ -#!/usr/bin/env ruby -# frozen_string_literal: true - -require 'json' -require 'open3' -require 'optparse' -require 'fileutils' - -OPTIONS = {systems: "x86-64_linux"} - -op = OptionParser.new do |parser| - parser.banner = "Usage: capkgs [options]" - - parser.on '--from URL', 'Nix store URL to fetch inputs from' do |v| - OPTIONS[:from] = v - end - - parser.on '--to URL', 'Nix store URL to copy CA outputs to' do |v| - OPTIONS[:to] = v - end - - parser.on '--only org/repo', 'Only update the given org/repo' do |v| - OPTIONS[:only] = v - end - - parser.on '--systems A,B', Array, "systems to process" do |v| - OPTIONS[:systems] = v - end - - parser.on '-h', '--help' do - puts parser - exit - end -end - -op.parse! - -unless OPTIONS[:from] - STDERR.puts "Missing required flag: --from" - puts op - exit 1 -end - -unless OPTIONS[:to] - STDERR.puts "Missing required flag: --to" - puts op - exit 1 -end - -def sh(*args) - pp args - stdout, stderr, status = Open3.capture3(*args) - pp Result.new(args, stdout, stderr, status) -end - -class Result < Struct.new(:command, :stdout, :stderr, :status) - def to_json(options) - {command: command, stdout: stdout, stderr: stderr, status: status.exitstatus}.to_json(options) - end -end - -def process(pkg, flake_url, org, repo, tag, rev) - pkg.merge!('org' => org, 'repo' => repo, 'tag' => tag, 'rev' => rev) - - return if pkg['fail'] - - puts "Processing #{flake_url}" - - (merge(pkg) { process_eval(flake_url) }) && - (set(pkg, 'closure') { process_closure(flake_url) }) - - puts "Marked #{flake_url} as failed" if pkg['fail'] -end - -def nix_make_content_addressed(out_path) - content_addressed, status = - sh 'nix', 'store', 'make-content-addressed', out_path.fetch('outputs').fetch('out'), - '--json', - '--from', OPTIONS.fetch(:from), - '--to', OPTIONS.fetch(:to) - content_addressed if status.success? -end - -def fetch_git_branches(org_name, repo_name, branches, dest) - url = "https://github.com/#{org_name}/#{repo_name}" - - refs_branches = branches.map do |branch| - if File.file?(dest) && (found = JSON.parse(File.read(dest))[branch]) - next [branch, found] - end - - result = sh('git', 'ls-remote', '--exit-code', url, "refs/heads/#{branch}") - raise "failed to fetch branch '#{branch}' from #{url}" unless result.status.success? - - rev, _ = result.stdout.lines.first.strip.split - [branch, rev] - end - - puts "writing #{dest}" - File.write(dest, JSON.pretty_generate(refs_branches.to_h)) -end - -def fetch_git_tags(org_name, repo_name, pattern, dest) - url = "https://github.com/#{org_name}/#{repo_name}" - result = sh('git', 'ls-remote', '--exit-code', url, 'refs/tags/*') - return {} unless result.status.success? - - refs_tags = result.stdout.lines.grep(Regexp.new(pattern)).map do |line| - rev, ref = line.strip.split - [ref.sub(%r!^refs/(tags|heads)/!, ''), rev] - end - - puts "writing #{dest}" - File.write(dest, JSON.pretty_generate(refs_tags.to_h)) -end - -def fetch_github_releases(org_name, repo_name, dest) - releases_url = "https://api.github.com/repos/#{org_name}/#{repo_name}/releases" - # Use curl here to take advantage of netrc for the token without having to parse it - curl_result = sh('curl', '-s', '--fail-with-body', releases_url) - return {} unless curl_result.status.success? - - tag_names = JSON.parse(curl_result.stdout).map{|release| release.fetch('tag_name') } - refs_tags = tag_names.map do |tag_name| - if File.file?(dest) && (found = JSON.parse(File.read(dest))[tag_name]) - next [tag_name, found] - end - - tags_url = "https://github.com/#{org_name}/#{repo_name}" - tags_result = sh('git', 'ls-remote', '--exit-code', '--tags', tags_url, tag_name) - raise "Failed to fetch #{tag_name} from #{tags_url}" unless tags_result.status.success? - - pattern = %r!refs/tags/#{Regexp.escape(tag_name)}! - matching = tags_result.stdout.lines.grep(pattern) - rev, ref = matching.first.strip.split - [tag_name, rev] - end - - puts "writing #{dest}" - File.write(dest, JSON.pretty_generate(refs_tags.to_h)) -end - -def update_releases - JSON.parse(File.read('projects.json')).flat_map do |org_name, repos| - repos.flat_map do |repo_name, config| - dest = "releases/#{org_name}/#{repo_name}.json" - FileUtils.mkdir_p(File.dirname(dest)) - - case config.fetch('type') - when 'git_branches' - fetch_git_branches(org_name, repo_name, config.fetch('branches'), dest) - when 'git_tags' - fetch_git_tags(org_name, repo_name, config.fetch('pattern'), dest) - when 'github_releases' - fetch_github_releases(org_name, repo_name, dest) - else - raise "Invalid project type: #{config.type}" - end - end - end -end - -def each_package - JSON.parse(File.read("projects.json")).flat_map do |org_name, repos| - repos.flat_map do |repo_name, config| - JSON.parse(File.read("releases/#{org_name}/#{repo_name}.json")).flat_map do |version, commit| - config.fetch('packages').flat_map do |package| - yield Package.new(package, version, commit, org_name, repo_name, {}, [], {}) - end - end - end - end -end - -class Package < Struct.new( - :name, - :version, - :commit, - :org_name, - :repo_name, - :meta, - :out, - :closure, - :pname, - :system) - - def flake_url - name.gsub("${tag}", commit).gsub("${system}", "x86_64-linux") - end - - def eval_file_path; "evals/#{flake_url}.json"; end - def build_file_path; "builds/#{flake_url}.json"; end - def closure_file_path; "closures/#{flake_url}.json"; end - - CODE = <<~CODE.gsub(/\s+/, ' ').strip - d: { - inherit (d) system; - pname = d.pname or d.name; - version = d.version or ""; - meta = d.meta or {}; - } - CODE - - def nix_eval - process(eval_file_path, [ - 'nix', 'eval', flake_url, - '--accept-flake-config', - '--no-write-lock-file', - '--json', - '--apply', CODE - ]) do |stdout| - self.meta = stdout.fetch('meta') - self.pname = stdout.fetch('pname') - self.version = stdout.fetch('version') - self.system = stdout.fetch('system') - end - end - - def nix_build - process(build_file_path, [ - 'nix', 'build', flake_url, - '--accept-flake-config', - '--no-write-lock-file', - '--no-link', - '--json' - ]) do |stdout| - self.out = stdout - end - end - - def nix_store_make_content_addressed - process(closure_file_path, [ - "nix", "store", "make-content-addressed", out.first.fetch('outputs').fetch('out'), "--json", - '--from', OPTIONS.fetch(:from), - '--to', OPTIONS.fetch(:to) - ]) do |stdout| - from, to = stdout.fetch('rewrites').first - self.closure = { fromPath: from, toPath: to, fromStore: "https://cache.iog.io" } - end - end - - def mkdirs - [eval_file_path, build_file_path, closure_file_path].each do |path| - FileUtils.mkdir_p(File.dirname(path)) - end - end - - def to_h - { - closure: closure, - meta: meta, - org: org_name, - repo: repo_name, - rev: commit, - system: system, - tag: version, - } - end - - def process(path, cmd) - if File.file?(path) - parsed = JSON.parse(File.read(path)) - (parsed.fetch('status') == 0) && yield(JSON.parse(parsed.fetch('stdout'))) - else - result = sh(*cmd) - File.write(path, JSON.pretty_generate(result)) - yield(JSON.parse(result.stdout)) if result.status.success? - end - end -end - -trap(:INT){ exit } - -update_releases - -valid = {} - -each_package do |pkg| - pkg.mkdirs - pkg.nix_eval && - pkg.nix_build && - pkg.nix_store_make_content_addressed - valid[pkg.flake_url] = pkg.to_h if pkg.closure.any? -end - -File.write('packages.json', JSON.pretty_generate(valid.sort.to_h)) \ No newline at end of file diff --git a/releases.nu b/releases.nu deleted file mode 100755 index 5767346..0000000 --- a/releases.nu +++ /dev/null @@ -1,83 +0,0 @@ -#!/usr/bin/env nu - -def fetch-orgs [] { - each {|o| $o.repos | transpose repo repo_config | fetch-repo $o.org } -} - -def fetch-repo [org: string] { - each {|r| - let dst = $"releases/($org)/($r.repo).json" - mkdir ($dst | path dirname) - - match $r.repo_config.type { - git_branches => { fetch-git-branches $org $r.repo $dst $r.repo_config.branches }, - git_tags => { fetch-git-tags $org $r.repo $dst $r.repo_config.pattern }, - github_releases => { fetch-github-releases $org $r.repo $dst } - _ => { error make {msg: $"Invalid type: ($r.repo_config.type)"}} - } - } -} - -def fetch-github-releases [org: string, repo: string, dst: string] { - let url = $"https://api.github.com/repos/($org)/($repo)/releases" - print $"Fetching releases from ($url) ..." - - ( - curl -s --fail-with-body $url - | from json - | each {|release| $release | select tag_name } - | values - | flatten - | each {|tag| - ( - git ls-remote --exit-code --tags $"https://github.com/($org)/($repo)" $tag - | from git ls-remote - | where ref =~ $tag - | first - ) - } - | refs-to-json - | save -f $dst - ) -} - -def fetch-git-tags [org: string, repo: string, dst: string, pattern: string] { - let url = $"https://github.com/($org)/($repo)" - print $"Fetching tags from ($url) ..." - - ( - git ls-remote --exit-code $url 'refs/tags/*' - | from git ls-remote - | where ref =~ $pattern - | refs-to-json - | save -f $dst - ) -} - -def fetch-git-branches [org: string, repo: string, dst: string, branches: table] { - let url = $"https://github.com/($org)/($repo)" - print $"Fetching branches from ($url) ..." - - $branches | each {|branch| - ( - git ls-remote --exit-code $url $"refs/heads/($branch)" - | from git ls-remote - | refs-to-json - | save -f $dst - ) - } -} - -def refs-to-json [] { - reduce -f {} {|value, sum| - $sum | merge {($value.ref | str replace -r 'refs/(tags|heads)/' ''): $value.rev} - } | to json -} - -def "from git ls-remote" [] { - from tsv --noheaders - | rename rev ref - | where ref =~ 'refs/(tags|heads)' -} - -open projects.json | transpose org repos | fetch-orgs | to json \ No newline at end of file