diff --git a/.github/workflows/build-replace-npm-dependencies-sources.yml b/.github/workflows/build-sync-npm-git-dependencies-with-nix.yml similarity index 79% rename from .github/workflows/build-replace-npm-dependencies-sources.yml rename to .github/workflows/build-sync-npm-git-dependencies-with-nix.yml index ca46aa6..79bec04 100644 --- a/.github/workflows/build-replace-npm-dependencies-sources.yml +++ b/.github/workflows/build-sync-npm-git-dependencies-with-nix.yml @@ -1,4 +1,4 @@ -name: "build-replace-npm-dependencies-sources" +name: "build-sync-npm-git-dependencies-with-nix" on: # Trigger the workflow on push or pull request, # but only for the main branch @@ -31,5 +31,5 @@ jobs: env: CACHIX_AUTH_TOKEN: "${{ secrets.CACHIX_TOKEN_HOLOCHAIN_OPEN_DEV }}" run: | - cachix watch-exec holochain-open-dev -- nix build -L .#replace-npm-dependencies-sources - cachix pin holochain-open-dev replace-npm-dependencies-sources $(nix path-info .#replace-npm-dependencies-sources) + cachix watch-exec holochain-open-dev -- nix build -L .#sync-npm-git-dependencies-with-nix + cachix pin holochain-open-dev sync-npm-git-dependencies-with-nix $(nix path-info .#sync-npm-git-dependencies-with-nix) diff --git a/crates/replace-npm-dependencies-sources/src/main.rs b/crates/replace-npm-dependencies-sources/src/main.rs deleted file mode 100644 index 1d333d3..0000000 --- a/crates/replace-npm-dependencies-sources/src/main.rs +++ /dev/null @@ -1,82 +0,0 @@ -use anyhow::Result; -use ignore::Walk; -use serde_json::Value; -use std::{collections::HashMap, fs::File, io::BufReader, process::Command}; - -use clap::Parser; - -#[derive(Parser)] -#[command(version, about, long_about = None)] -struct Cli { - /// List of dependencies to replace, in the form = - dependencies_to_replace: Vec, -} - -fn parse_args() -> Result> { - let cli = Cli::parse(); - - let mut deps: HashMap = HashMap::new(); - - for dep in cli.dependencies_to_replace { - let split: Vec<&str> = dep.split('=').into_iter().collect(); - deps.insert(split[0].to_string(), split[1].to_string()); - } - - Ok(deps) -} - -fn main() -> Result<()> { - let deps_to_replace = parse_args()?; - - let mut announced = false; - let mut replaced_some_dep = false; - - for entry in Walk::new(".").into_iter().filter_map(|e| e.ok()) { - let f_name = entry.file_name().to_string_lossy(); - - if f_name == "package.json" { - let file = File::open(entry.path())?; - let reader = BufReader::new(file); - let mut package_json_contents: Value = serde_json::from_reader(reader)?; - - if let Some(Value::Object(deps)) = package_json_contents.get_mut("dependencies") { - for (dep_to_replace, new_source) in &deps_to_replace { - if let Some(found_dep) = deps.get_mut(dep_to_replace) { - match &found_dep { - Value::String(old_source) if old_source.eq(new_source) => {} - _ => { - *found_dep = Value::String(new_source.clone()); - - if !announced { - announced = true; - println!(""); - println!( - "Synchronizing npm dependencies with the upstream nix sources..." - ); - } - - println!( - " - Setting dependency \"{dep_to_replace}\" in file {:?} to \"{new_source}\"", - entry.path() - ); - replaced_some_dep = true; - } - } - } - } - } - - let st = serde_json::to_string_pretty(&package_json_contents)?; - - std::fs::write(entry.path(), st)?; - } - } - - if replaced_some_dep { - println!("Running npm install..."); - Command::new("npm").arg("install").output()?; - println!("Successfully synchronized npm dependencies with nix"); - } - - Ok(()) -} diff --git a/crates/replace-npm-dependencies-sources/Cargo.lock b/crates/sync-npm-git-dependencies-with-nix/Cargo.lock similarity index 61% rename from crates/replace-npm-dependencies-sources/Cargo.lock rename to crates/sync-npm-git-dependencies-with-nix/Cargo.lock index 7b73cac..1de962e 100644 --- a/crates/replace-npm-dependencies-sources/Cargo.lock +++ b/crates/sync-npm-git-dependencies-with-nix/Cargo.lock @@ -11,54 +11,6 @@ dependencies = [ "memchr", ] -[[package]] -name = "anstream" -version = "0.6.13" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb" -dependencies = [ - "anstyle", - "anstyle-parse", - "anstyle-query", - "anstyle-wincon", - "colorchoice", - "utf8parse", -] - -[[package]] -name = "anstyle" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" - -[[package]] -name = "anstyle-parse" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c" -dependencies = [ - "utf8parse", -] - -[[package]] -name = "anstyle-query" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648" -dependencies = [ - "windows-sys", -] - -[[package]] -name = "anstyle-wincon" -version = "3.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7" -dependencies = [ - "anstyle", - "windows-sys", -] - [[package]] name = "anyhow" version = "1.0.81" @@ -75,52 +27,6 @@ dependencies = [ "serde", ] -[[package]] -name = "clap" -version = "4.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b230ab84b0ffdf890d5a10abdbc8b83ae1c4918275daea1ab8801f71536b2651" -dependencies = [ - "clap_builder", - "clap_derive", -] - -[[package]] -name = "clap_builder" -version = "4.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4" -dependencies = [ - "anstream", - "anstyle", - "clap_lex", - "strsim", -] - -[[package]] -name = "clap_derive" -version = "4.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "307bc0538d5f0f83b8248db3087aa92fe504e4691294d0c96c0eabc33f47ba47" -dependencies = [ - "heck", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "clap_lex" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" - -[[package]] -name = "colorchoice" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" - [[package]] name = "crossbeam-deque" version = "0.8.5" @@ -171,12 +77,6 @@ version = "0.14.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" -[[package]] -name = "heck" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" - [[package]] name = "ignore" version = "0.4.22" @@ -221,6 +121,16 @@ version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149" +[[package]] +name = "parse-flake-lock" +version = "0.1.0" +source = "git+https://github.com/DeterminateSystems/flake-checker?branch=main#267211ab35fdd1792cdfcfcf9f98901d89971f99" +dependencies = [ + "serde", + "serde_json", + "thiserror", +] + [[package]] name = "proc-macro2" version = "1.0.79" @@ -239,6 +149,18 @@ dependencies = [ "proc-macro2", ] +[[package]] +name = "regex" +version = "1.10.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + [[package]] name = "regex-automata" version = "0.4.6" @@ -256,17 +178,6 @@ version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" -[[package]] -name = "replace-npm-dependencies-sources" -version = "0.1.0" -dependencies = [ - "anyhow", - "clap", - "ignore", - "serde", - "serde_json", -] - [[package]] name = "ryu" version = "1.0.17" @@ -314,12 +225,6 @@ dependencies = [ "serde", ] -[[package]] -name = "strsim" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ee073c9e4cd00e28217186dbe12796d692868f432bf2e97ee73bed0c56dfa01" - [[package]] name = "syn" version = "2.0.52" @@ -332,16 +237,42 @@ dependencies = [ ] [[package]] -name = "unicode-ident" -version = "1.0.12" +name = "sync-npm-git-dependencies-with-nix" +version = "0.1.0" +dependencies = [ + "anyhow", + "ignore", + "parse-flake-lock", + "regex", + "serde", + "serde_json", +] + +[[package]] +name = "thiserror" +version = "1.0.58" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" +checksum = "03468839009160513471e86a034bb2c5c0e4baae3b43f79ffc55c4a5427b3297" +dependencies = [ + "thiserror-impl", +] [[package]] -name = "utf8parse" -version = "0.2.1" +name = "thiserror-impl" +version = "1.0.58" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" +checksum = "c61f3ba182994efc43764a46c018c347bc492c79f024e705f46567b418f6d4f7" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "unicode-ident" +version = "1.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" [[package]] name = "walkdir" @@ -383,69 +314,3 @@ name = "winapi-x86_64-pc-windows-gnu" version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" - -[[package]] -name = "windows-sys" -version = "0.52.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" -dependencies = [ - "windows-targets", -] - -[[package]] -name = "windows-targets" -version = "0.52.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dd37b7e5ab9018759f893a1952c9420d060016fc19a472b4bb20d1bdd694d1b" -dependencies = [ - "windows_aarch64_gnullvm", - "windows_aarch64_msvc", - "windows_i686_gnu", - "windows_i686_msvc", - "windows_x86_64_gnu", - "windows_x86_64_gnullvm", - "windows_x86_64_msvc", -] - -[[package]] -name = "windows_aarch64_gnullvm" -version = "0.52.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bcf46cf4c365c6f2d1cc93ce535f2c8b244591df96ceee75d8e83deb70a9cac9" - -[[package]] -name = "windows_aarch64_msvc" -version = "0.52.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da9f259dd3bcf6990b55bffd094c4f7235817ba4ceebde8e6d11cd0c5633b675" - -[[package]] -name = "windows_i686_gnu" -version = "0.52.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b474d8268f99e0995f25b9f095bc7434632601028cf86590aea5c8a5cb7801d3" - -[[package]] -name = "windows_i686_msvc" -version = "0.52.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1515e9a29e5bed743cb4415a9ecf5dfca648ce85ee42e15873c3cd8610ff8e02" - -[[package]] -name = "windows_x86_64_gnu" -version = "0.52.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5eee091590e89cc02ad514ffe3ead9eb6b660aedca2183455434b93546371a03" - -[[package]] -name = "windows_x86_64_gnullvm" -version = "0.52.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "77ca79f2451b49fa9e2af39f0747fe999fcda4f5e241b2898624dca97a1f2177" - -[[package]] -name = "windows_x86_64_msvc" -version = "0.52.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "32b752e52a2da0ddfbdbcc6fceadfeede4c939ed16d13e648833a61dfb611ed8" diff --git a/crates/replace-npm-dependencies-sources/Cargo.toml b/crates/sync-npm-git-dependencies-with-nix/Cargo.toml similarity index 63% rename from crates/replace-npm-dependencies-sources/Cargo.toml rename to crates/sync-npm-git-dependencies-with-nix/Cargo.toml index de24e66..cfb52eb 100644 --- a/crates/replace-npm-dependencies-sources/Cargo.toml +++ b/crates/sync-npm-git-dependencies-with-nix/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "replace-npm-dependencies-sources" +name = "sync-npm-git-dependencies-with-nix" version = "0.1.0" edition = "2021" @@ -7,7 +7,8 @@ edition = "2021" [dependencies] anyhow = "1.0.81" -clap = {version ="4.5.2", features = ["derive"]} +parse-flake-lock = { git = "https://github.com/DeterminateSystems/flake-checker", branch = "main" } ignore = "0.4" serde_json = {version ="1", features = ["std", "preserve_order"]} serde = "1" +regex = "1" diff --git a/crates/sync-npm-git-dependencies-with-nix/fixture/flake.lock b/crates/sync-npm-git-dependencies-with-nix/fixture/flake.lock new file mode 100644 index 0000000..c5c3f1f --- /dev/null +++ b/crates/sync-npm-git-dependencies-with-nix/fixture/flake.lock @@ -0,0 +1,10463 @@ +{ + "nodes": { + "cargo-chef": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_10": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_11": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_12": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_13": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_14": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_15": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_16": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_17": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_18": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_19": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_2": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_3": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_4": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_5": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_6": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_7": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_8": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_9": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-rdme": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_10": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_11": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_12": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_13": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_14": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_15": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_16": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_17": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_18": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_19": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_2": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_3": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_4": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_5": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_6": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_7": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_8": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_9": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "crane": { + "inputs": { + "nixpkgs": "nixpkgs" + }, + "locked": { + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", + "owner": "ipetkov", + "repo": "crane", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_10": { + "inputs": { + "nixpkgs": "nixpkgs_10" + }, + "locked": { + "lastModified": 1708560786, + "narHash": "sha256-gcTA/iq9mfrwGPQsoxVryWhCAgBwL2GJLGO/s06/0wY=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9a5972e2e8d0b1716cc4e42af8b75eca6914fbff", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_11": { + "inputs": { + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_12": { + "inputs": { + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_13": { + "inputs": { + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_14": { + "inputs": { + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_15": { + "inputs": { + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_16": { + "inputs": { + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_17": { + "inputs": { + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_18": { + "inputs": { + "nixpkgs": [ + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_19": { + "inputs": { + "nixpkgs": [ + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_2": { + "inputs": { + "nixpkgs": "nixpkgs_2" + }, + "locked": { + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", + "owner": "ipetkov", + "repo": "crane", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_20": { + "inputs": { + "nixpkgs": [ + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_21": { + "inputs": { + "nixpkgs": "nixpkgs_22" + }, + "locked": { + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", + "owner": "ipetkov", + "repo": "crane", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_22": { + "inputs": { + "nixpkgs": "nixpkgs_23" + }, + "locked": { + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", + "owner": "ipetkov", + "repo": "crane", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_23": { + "inputs": { + "nixpkgs": "nixpkgs_24" + }, + "locked": { + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", + "owner": "ipetkov", + "repo": "crane", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_24": { + "inputs": { + "nixpkgs": "nixpkgs_25" + }, + "locked": { + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", + "owner": "ipetkov", + "repo": "crane", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_25": { + "inputs": { + "nixpkgs": "nixpkgs_26" + }, + "locked": { + "lastModified": 1709610799, + "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", + "owner": "ipetkov", + "repo": "crane", + "rev": "81c393c776d5379c030607866afef6406ca1be57", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_26": { + "inputs": { + "nixpkgs": "nixpkgs_27" + }, + "locked": { + "lastModified": 1709610799, + "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", + "owner": "ipetkov", + "repo": "crane", + "rev": "81c393c776d5379c030607866afef6406ca1be57", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_27": { + "inputs": { + "nixpkgs": "nixpkgs_28" + }, + "locked": { + "lastModified": 1709610799, + "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", + "owner": "ipetkov", + "repo": "crane", + "rev": "81c393c776d5379c030607866afef6406ca1be57", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_28": { + "inputs": { + "nixpkgs": "nixpkgs_29" + }, + "locked": { + "lastModified": 1708560786, + "narHash": "sha256-gcTA/iq9mfrwGPQsoxVryWhCAgBwL2GJLGO/s06/0wY=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9a5972e2e8d0b1716cc4e42af8b75eca6914fbff", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_29": { + "inputs": { + "nixpkgs": "nixpkgs_30" + }, + "locked": { + "lastModified": 1708560786, + "narHash": "sha256-gcTA/iq9mfrwGPQsoxVryWhCAgBwL2GJLGO/s06/0wY=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9a5972e2e8d0b1716cc4e42af8b75eca6914fbff", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_3": { + "inputs": { + "nixpkgs": "nixpkgs_3" + }, + "locked": { + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", + "owner": "ipetkov", + "repo": "crane", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_30": { + "inputs": { + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_31": { + "inputs": { + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_32": { + "inputs": { + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_33": { + "inputs": { + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_34": { + "inputs": { + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_35": { + "inputs": { + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_36": { + "inputs": { + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_37": { + "inputs": { + "nixpkgs": [ + "profiles", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_38": { + "inputs": { + "nixpkgs": [ + "profiles", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_4": { + "inputs": { + "nixpkgs": "nixpkgs_4" + }, + "locked": { + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", + "owner": "ipetkov", + "repo": "crane", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_5": { + "inputs": { + "nixpkgs": "nixpkgs_5" + }, + "locked": { + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", + "owner": "ipetkov", + "repo": "crane", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_6": { + "inputs": { + "nixpkgs": "nixpkgs_6" + }, + "locked": { + "lastModified": 1709610799, + "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", + "owner": "ipetkov", + "repo": "crane", + "rev": "81c393c776d5379c030607866afef6406ca1be57", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_7": { + "inputs": { + "nixpkgs": "nixpkgs_7" + }, + "locked": { + "lastModified": 1709610799, + "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", + "owner": "ipetkov", + "repo": "crane", + "rev": "81c393c776d5379c030607866afef6406ca1be57", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_8": { + "inputs": { + "nixpkgs": "nixpkgs_8" + }, + "locked": { + "lastModified": 1709610799, + "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", + "owner": "ipetkov", + "repo": "crane", + "rev": "81c393c776d5379c030607866afef6406ca1be57", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_9": { + "inputs": { + "nixpkgs": "nixpkgs_9" + }, + "locked": { + "lastModified": 1708560786, + "narHash": "sha256-gcTA/iq9mfrwGPQsoxVryWhCAgBwL2GJLGO/s06/0wY=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9a5972e2e8d0b1716cc4e42af8b75eca6914fbff", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crate2nix": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "crate2nix_10": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "crate2nix_11": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "crate2nix_12": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "crate2nix_13": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "crate2nix_14": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "crate2nix_15": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "crate2nix_16": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "crate2nix_17": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "crate2nix_18": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "crate2nix_19": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "crate2nix_2": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "crate2nix_3": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "crate2nix_4": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "crate2nix_5": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "crate2nix_6": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "crate2nix_7": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "crate2nix_8": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "crate2nix_9": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "empty": { + "flake": false, + "locked": { + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "type": "github" + }, + "original": { + "owner": "steveej", + "repo": "empty", + "type": "github" + } + }, + "empty_10": { + "flake": false, + "locked": { + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "type": "github" + }, + "original": { + "owner": "steveej", + "repo": "empty", + "type": "github" + } + }, + "empty_11": { + "flake": false, + "locked": { + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "type": "github" + }, + "original": { + "owner": "steveej", + "repo": "empty", + "type": "github" + } + }, + "empty_12": { + "flake": false, + "locked": { + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "type": "github" + }, + "original": { + "owner": "steveej", + "repo": "empty", + "type": "github" + } + }, + "empty_13": { + "flake": false, + "locked": { + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "type": "github" + }, + "original": { + "owner": "steveej", + "repo": "empty", + "type": "github" + } + }, + "empty_14": { + "flake": false, + "locked": { + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "type": "github" + }, + "original": { + "owner": "steveej", + "repo": "empty", + "type": "github" + } + }, + "empty_15": { + "flake": false, + "locked": { + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "type": "github" + }, + "original": { + "owner": "steveej", + "repo": "empty", + "type": "github" + } + }, + "empty_16": { + "flake": false, + "locked": { + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "type": "github" + }, + "original": { + "owner": "steveej", + "repo": "empty", + "type": "github" + } + }, + "empty_17": { + "flake": false, + "locked": { + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "type": "github" + }, + "original": { + "owner": "steveej", + "repo": "empty", + "type": "github" + } + }, + "empty_18": { + "flake": false, + "locked": { + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "type": "github" + }, + "original": { + "owner": "steveej", + "repo": "empty", + "type": "github" + } + }, + "empty_19": { + "flake": false, + "locked": { + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "type": "github" + }, + "original": { + "owner": "steveej", + "repo": "empty", + "type": "github" + } + }, + "empty_2": { + "flake": false, + "locked": { + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "type": "github" + }, + "original": { + "owner": "steveej", + "repo": "empty", + "type": "github" + } + }, + "empty_3": { + "flake": false, + "locked": { + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "type": "github" + }, + "original": { + "owner": "steveej", + "repo": "empty", + "type": "github" + } + }, + "empty_4": { + "flake": false, + "locked": { + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "type": "github" + }, + "original": { + "owner": "steveej", + "repo": "empty", + "type": "github" + } + }, + "empty_5": { + "flake": false, + "locked": { + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "type": "github" + }, + "original": { + "owner": "steveej", + "repo": "empty", + "type": "github" + } + }, + "empty_6": { + "flake": false, + "locked": { + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "type": "github" + }, + "original": { + "owner": "steveej", + "repo": "empty", + "type": "github" + } + }, + "empty_7": { + "flake": false, + "locked": { + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "type": "github" + }, + "original": { + "owner": "steveej", + "repo": "empty", + "type": "github" + } + }, + "empty_8": { + "flake": false, + "locked": { + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "type": "github" + }, + "original": { + "owner": "steveej", + "repo": "empty", + "type": "github" + } + }, + "empty_9": { + "flake": false, + "locked": { + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "type": "github" + }, + "original": { + "owner": "steveej", + "repo": "empty", + "type": "github" + } + }, + "flake-compat": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_10": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_11": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_12": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_13": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_14": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_15": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_16": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_17": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_18": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_19": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_2": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_3": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_4": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_5": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_6": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_7": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_8": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_9": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-parts": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_10": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_10" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_11": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_11" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_12": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_12" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_13": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_13" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_14": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_14" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_15": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_15" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_16": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_16" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_17": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_17" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_18": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_18" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_19": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_19" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_2": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_2" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_3": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_3" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_4": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_4" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_5": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_5" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_6": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_6" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_7": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_7" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_8": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_8" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_9": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_9" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_10": { + "inputs": { + "systems": "systems_10" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_11": { + "inputs": { + "systems": "systems_11" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_12": { + "inputs": { + "systems": "systems_12" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_13": { + "inputs": { + "systems": "systems_13" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_14": { + "inputs": { + "systems": "systems_14" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_15": { + "inputs": { + "systems": "systems_15" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_16": { + "inputs": { + "systems": "systems_16" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_17": { + "inputs": { + "systems": "systems_17" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_18": { + "inputs": { + "systems": "systems_18" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_19": { + "inputs": { + "systems": "systems_19" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_2": { + "inputs": { + "systems": "systems_2" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_20": { + "inputs": { + "systems": "systems_20" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_21": { + "inputs": { + "systems": "systems_21" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_22": { + "inputs": { + "systems": "systems_22" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_23": { + "inputs": { + "systems": "systems_23" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_24": { + "inputs": { + "systems": "systems_24" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_25": { + "inputs": { + "systems": "systems_25" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_26": { + "inputs": { + "systems": "systems_26" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_27": { + "inputs": { + "systems": "systems_27" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_28": { + "inputs": { + "systems": "systems_28" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_29": { + "inputs": { + "systems": "systems_29" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_3": { + "inputs": { + "systems": "systems_3" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_30": { + "inputs": { + "systems": "systems_30" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_31": { + "inputs": { + "systems": "systems_31" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_32": { + "inputs": { + "systems": "systems_32" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_33": { + "inputs": { + "systems": "systems_33" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_34": { + "inputs": { + "systems": "systems_34" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_35": { + "inputs": { + "systems": "systems_35" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_36": { + "inputs": { + "systems": "systems_36" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_37": { + "inputs": { + "systems": "systems_37" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_38": { + "inputs": { + "systems": "systems_38" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_4": { + "inputs": { + "systems": "systems_4" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_5": { + "inputs": { + "systems": "systems_5" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_6": { + "inputs": { + "systems": "systems_6" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_7": { + "inputs": { + "systems": "systems_7" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_8": { + "inputs": { + "systems": "systems_8" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_9": { + "inputs": { + "systems": "systems_9" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "hcUtils": { + "inputs": { + "crane": "crane", + "hcUtils": "hcUtils_2", + "holochain": "holochain_17", + "nixpkgs": [ + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_19", + "versions": "versions_9" + }, + "locked": { + "lastModified": 0, + "narHash": "sha256-Ee8bjBv1rQczwmJ3jFA1EXmndHStvHcDGuykREGVSQY=", + "path": "../../..", + "type": "path" + }, + "original": { + "path": "../../..", + "type": "path" + } + }, + "hcUtils_10": { + "inputs": { + "crane": "crane_10", + "nixpkgs": "nixpkgs_11", + "rust-overlay": "rust-overlay" + }, + "locked": { + "lastModified": 1708609246, + "narHash": "sha256-8C5Nf84Sw3vutYxACA+N1Mc+QC06SddHzA1mjls/v8w=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "e7e9cfca683aaa78dfa7959bff7b1af91aa6651b", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_11": { + "inputs": { + "crane": "crane_21", + "hcUtils": "hcUtils_12", + "holochain": "holochain_34", + "nixpkgs": [ + "profiles", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_37", + "versions": "versions_17" + }, + "locked": { + "lastModified": 1710327853, + "narHash": "sha256-6MEyrHRBq72i+cCXHUFgODLHhYvBfyayYaH1KoXKLl0=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "f334cbf1e9161a2f0b5401f808267100250d3aa6", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_12": { + "inputs": { + "crane": "crane_22", + "hcUtils": "hcUtils_13", + "holochain": "holochain_32", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_35", + "versions": "versions_16" + }, + "locked": { + "lastModified": 1710259503, + "narHash": "sha256-GKjKaY3L1WCWLx6zHcR6EvR2JKCABpIbrGnuZcbEEPk=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "7503e467f55425cfa802f33cafcb53d6011417b7", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_13": { + "inputs": { + "crane": "crane_23", + "hcUtils": "hcUtils_14", + "holochain": "holochain_30", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_33", + "versions": "versions_15" + }, + "locked": { + "lastModified": 1710259052, + "narHash": "sha256-L5u7wJDtKR/DfaS0tqUJymEimkwzTItmgkRug/q+qM4=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "1c569cb148d3cc33c18e55aca5e99032166d8bb0", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_14": { + "inputs": { + "crane": "crane_24", + "hcUtils": "hcUtils_15", + "holochain": "holochain_28", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_31", + "versions": "versions_14" + }, + "locked": { + "lastModified": 1710170526, + "narHash": "sha256-8SMfoPrMF0nXBmN+k9Ckxy/1VFB7GWMX+ZWPQUl/ylM=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "8ae6c8817918006f25f0e38c0351809e23328df8", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_15": { + "inputs": { + "crane": "crane_25", + "hcUtils": "hcUtils_16", + "holochain": "holochain_26", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_29", + "versions": "versions_13" + }, + "locked": { + "lastModified": 1709938899, + "narHash": "sha256-1cojwgfN0Ey5eRyrlD5DktbraaFGK0LNv8LyZuQhBlc=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "528c55a03bec665e4f44e8b45f4b9d03ea9d9471", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_16": { + "inputs": { + "crane": "crane_26", + "hcUtils": "hcUtils_17", + "holochain": "holochain_24", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_27", + "versions": "versions_12" + }, + "locked": { + "lastModified": 1709847264, + "narHash": "sha256-209E9O8Ck/2fHMkjLVQ7/RlDfQtHJRh/vP+B8jFDQHE=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "5b8365d3a970df9038a4518dee76c0e40a5de813", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_17": { + "inputs": { + "crane": "crane_27", + "hcUtils": "hcUtils_18", + "holochain": "holochain_22", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_25", + "versions": "versions_11" + }, + "locked": { + "lastModified": 1709743154, + "narHash": "sha256-M16V2rHCdfTW9aot1XeMxWpmIs0axH2FbFpmsbBY5ZY=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "282b7ab81a5755e8c41982766caecb6663c63c2d", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_18": { + "inputs": { + "crane": "crane_28", + "hcUtils": "hcUtils_19", + "holochain": "holochain_20", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_23", + "versions": "versions_10" + }, + "locked": { + "lastModified": 1709649392, + "narHash": "sha256-X3ijMZFXDu2V2Wko1jFO8oovqbilGUj5U77WNiP+jvE=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "546c3c654904e1bd859dea39960475fef4c7924b", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_19": { + "inputs": { + "crane": "crane_29", + "nixpkgs": "nixpkgs_31", + "rust-overlay": "rust-overlay_21" + }, + "locked": { + "lastModified": 1708609246, + "narHash": "sha256-8C5Nf84Sw3vutYxACA+N1Mc+QC06SddHzA1mjls/v8w=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "e7e9cfca683aaa78dfa7959bff7b1af91aa6651b", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_2": { + "inputs": { + "crane": "crane_2", + "hcUtils": "hcUtils_3", + "holochain": "holochain_15", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_17", + "versions": "versions_8" + }, + "locked": { + "lastModified": 1710328673, + "narHash": "sha256-qA1IzSbEsgd+QLOegEK8I6Frk1ryX/iFB1vXw/NYRvs=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "c80094cb97c3a01e31e59773b6b2e53990191460", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_3": { + "inputs": { + "crane": "crane_3", + "hcUtils": "hcUtils_4", + "holochain": "holochain_13", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_15", + "versions": "versions_7" + }, + "locked": { + "lastModified": 1710259503, + "narHash": "sha256-GKjKaY3L1WCWLx6zHcR6EvR2JKCABpIbrGnuZcbEEPk=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "7503e467f55425cfa802f33cafcb53d6011417b7", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_4": { + "inputs": { + "crane": "crane_4", + "hcUtils": "hcUtils_5", + "holochain": "holochain_11", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_13", + "versions": "versions_6" + }, + "locked": { + "lastModified": 1710259052, + "narHash": "sha256-L5u7wJDtKR/DfaS0tqUJymEimkwzTItmgkRug/q+qM4=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "1c569cb148d3cc33c18e55aca5e99032166d8bb0", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_5": { + "inputs": { + "crane": "crane_5", + "hcUtils": "hcUtils_6", + "holochain": "holochain_9", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_11", + "versions": "versions_5" + }, + "locked": { + "lastModified": 1710170526, + "narHash": "sha256-8SMfoPrMF0nXBmN+k9Ckxy/1VFB7GWMX+ZWPQUl/ylM=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "8ae6c8817918006f25f0e38c0351809e23328df8", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_6": { + "inputs": { + "crane": "crane_6", + "hcUtils": "hcUtils_7", + "holochain": "holochain_7", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_9", + "versions": "versions_4" + }, + "locked": { + "lastModified": 1709938899, + "narHash": "sha256-1cojwgfN0Ey5eRyrlD5DktbraaFGK0LNv8LyZuQhBlc=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "528c55a03bec665e4f44e8b45f4b9d03ea9d9471", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_7": { + "inputs": { + "crane": "crane_7", + "hcUtils": "hcUtils_8", + "holochain": "holochain_5", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_7", + "versions": "versions_3" + }, + "locked": { + "lastModified": 1709847264, + "narHash": "sha256-209E9O8Ck/2fHMkjLVQ7/RlDfQtHJRh/vP+B8jFDQHE=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "5b8365d3a970df9038a4518dee76c0e40a5de813", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_8": { + "inputs": { + "crane": "crane_8", + "hcUtils": "hcUtils_9", + "holochain": "holochain_3", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_5", + "versions": "versions_2" + }, + "locked": { + "lastModified": 1709743154, + "narHash": "sha256-M16V2rHCdfTW9aot1XeMxWpmIs0axH2FbFpmsbBY5ZY=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "282b7ab81a5755e8c41982766caecb6663c63c2d", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_9": { + "inputs": { + "crane": "crane_9", + "hcUtils": "hcUtils_10", + "holochain": "holochain", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_3", + "versions": "versions" + }, + "locked": { + "lastModified": 1709649392, + "narHash": "sha256-X3ijMZFXDu2V2Wko1jFO8oovqbilGUj5U77WNiP+jvE=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "546c3c654904e1bd859dea39960475fef4c7924b", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "holochain": { + "inputs": { + "cargo-chef": "cargo-chef", + "cargo-rdme": "cargo-rdme", + "crane": "crane_11", + "crate2nix": "crate2nix", + "empty": "empty", + "flake-compat": "flake-compat", + "flake-parts": "flake-parts", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter", + "nixpkgs": "nixpkgs_12", + "pre-commit-hooks-nix": "pre-commit-hooks-nix", + "repo-git": "repo-git", + "rust-overlay": "rust-overlay_2", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1708595708, + "narHash": "sha256-coOhtMii+epTQobSAj1qGfVYbN9Rs0oB+Rj6ZePqKIU=", + "owner": "holochain", + "repo": "holochain", + "rev": "e2fd7138bfeb1185a245421eefb2f83d237eccef", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_10": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_11": { + "inputs": { + "cargo-chef": "cargo-chef_6", + "cargo-rdme": "cargo-rdme_6", + "crane": "crane_16", + "crate2nix": "crate2nix_6", + "empty": "empty_6", + "flake-compat": "flake-compat_6", + "flake-parts": "flake-parts_6", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_6", + "nixpkgs": "nixpkgs_17", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_6", + "repo-git": "repo-git_6", + "rust-overlay": "rust-overlay_12", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_12": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_13": { + "inputs": { + "cargo-chef": "cargo-chef_7", + "cargo-rdme": "cargo-rdme_7", + "crane": "crane_17", + "crate2nix": "crate2nix_7", + "empty": "empty_7", + "flake-compat": "flake-compat_7", + "flake-parts": "flake-parts_7", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_7", + "nixpkgs": "nixpkgs_18", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_7", + "repo-git": "repo-git_7", + "rust-overlay": "rust-overlay_14", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_14": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_15": { + "inputs": { + "cargo-chef": "cargo-chef_8", + "cargo-rdme": "cargo-rdme_8", + "crane": "crane_18", + "crate2nix": "crate2nix_8", + "empty": "empty_8", + "flake-compat": "flake-compat_8", + "flake-parts": "flake-parts_8", + "holochain": [ + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_8", + "nixpkgs": "nixpkgs_19", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_8", + "repo-git": "repo-git_8", + "rust-overlay": "rust-overlay_16", + "scaffolding": [ + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_16": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_17": { + "inputs": { + "cargo-chef": "cargo-chef_9", + "cargo-rdme": "cargo-rdme_9", + "crane": "crane_19", + "crate2nix": "crate2nix_9", + "empty": "empty_9", + "flake-compat": "flake-compat_9", + "flake-parts": "flake-parts_9", + "holochain": [ + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_9", + "nixpkgs": "nixpkgs_20", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_9", + "repo-git": "repo-git_9", + "rust-overlay": "rust-overlay_18", + "scaffolding": [ + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", + "owner": "holochain", + "repo": "holochain", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_18": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_19": { + "inputs": { + "cargo-chef": "cargo-chef_10", + "cargo-rdme": "cargo-rdme_10", + "crane": "crane_20", + "crate2nix": "crate2nix_10", + "empty": "empty_10", + "flake-compat": "flake-compat_10", + "flake-parts": "flake-parts_10", + "holochain": [ + "holochain", + "empty" + ], + "lair": [ + "holochain", + "empty" + ], + "launcher": [ + "holochain", + "empty" + ], + "nix-filter": "nix-filter_10", + "nixpkgs": "nixpkgs_21", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_10", + "repo-git": "repo-git_10", + "rust-overlay": "rust-overlay_20", + "scaffolding": [ + "holochain", + "empty" + ], + "versions": [ + "versions" + ] + }, + "locked": { + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", + "owner": "holochain", + "repo": "holochain", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_2": { + "flake": false, + "locked": { + "lastModified": 1707871925, + "narHash": "sha256-LmDAQT21zXXgDl/68ERyCerAWCym7aKECnXsnyLcmXw=", + "owner": "holochain", + "repo": "holochain", + "rev": "2f3c8dce79586aad6f67d3428bf56d868303f956", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.37", + "repo": "holochain", + "type": "github" + } + }, + "holochain_20": { + "inputs": { + "cargo-chef": "cargo-chef_11", + "cargo-rdme": "cargo-rdme_11", + "crane": "crane_30", + "crate2nix": "crate2nix_11", + "empty": "empty_11", + "flake-compat": "flake-compat_11", + "flake-parts": "flake-parts_11", + "holochain": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_11", + "nixpkgs": "nixpkgs_32", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_11", + "repo-git": "repo-git_11", + "rust-overlay": "rust-overlay_22", + "scaffolding": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1708595708, + "narHash": "sha256-coOhtMii+epTQobSAj1qGfVYbN9Rs0oB+Rj6ZePqKIU=", + "owner": "holochain", + "repo": "holochain", + "rev": "e2fd7138bfeb1185a245421eefb2f83d237eccef", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_21": { + "flake": false, + "locked": { + "lastModified": 1707871925, + "narHash": "sha256-LmDAQT21zXXgDl/68ERyCerAWCym7aKECnXsnyLcmXw=", + "owner": "holochain", + "repo": "holochain", + "rev": "2f3c8dce79586aad6f67d3428bf56d868303f956", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.37", + "repo": "holochain", + "type": "github" + } + }, + "holochain_22": { + "inputs": { + "cargo-chef": "cargo-chef_12", + "cargo-rdme": "cargo-rdme_12", + "crane": "crane_31", + "crate2nix": "crate2nix_12", + "empty": "empty_12", + "flake-compat": "flake-compat_12", + "flake-parts": "flake-parts_12", + "holochain": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_12", + "nixpkgs": "nixpkgs_33", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_12", + "repo-git": "repo-git_12", + "rust-overlay": "rust-overlay_24", + "scaffolding": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709620314, + "narHash": "sha256-d7vekpj538VqdDrChFbVQpSVGDMnU1nSksbSzacKvyM=", + "owner": "holochain", + "repo": "holochain", + "rev": "392bdfd729fb6ce50f78f9e7f1c757dc392675f4", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_23": { + "flake": false, + "locked": { + "lastModified": 1709081329, + "narHash": "sha256-QP7WKySgEFbgNaSc7BNBBOWCVKuycXSp4HAfD4GTug8=", + "owner": "holochain", + "repo": "holochain", + "rev": "547c63a442e61be805887b644c78cf6f970d631b", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.38", + "repo": "holochain", + "type": "github" + } + }, + "holochain_24": { + "inputs": { + "cargo-chef": "cargo-chef_13", + "cargo-rdme": "cargo-rdme_13", + "crane": "crane_32", + "crate2nix": "crate2nix_13", + "empty": "empty_13", + "flake-compat": "flake-compat_13", + "flake-parts": "flake-parts_13", + "holochain": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_13", + "nixpkgs": "nixpkgs_34", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_13", + "repo-git": "repo-git_13", + "rust-overlay": "rust-overlay_26", + "scaffolding": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709731345, + "narHash": "sha256-YNMiQJRbnBdTQ/Q26M5zp+j2DGtpmaI/VWPVJxc4G7k=", + "owner": "holochain", + "repo": "holochain", + "rev": "3c3d2d73819e97cb9f5487d853f75a9954850f1e", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_25": { + "flake": false, + "locked": { + "lastModified": 1709081329, + "narHash": "sha256-QP7WKySgEFbgNaSc7BNBBOWCVKuycXSp4HAfD4GTug8=", + "owner": "holochain", + "repo": "holochain", + "rev": "547c63a442e61be805887b644c78cf6f970d631b", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.38", + "repo": "holochain", + "type": "github" + } + }, + "holochain_26": { + "inputs": { + "cargo-chef": "cargo-chef_14", + "cargo-rdme": "cargo-rdme_14", + "crane": "crane_33", + "crate2nix": "crate2nix_14", + "empty": "empty_14", + "flake-compat": "flake-compat_14", + "flake-parts": "flake-parts_14", + "holochain": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_14", + "nixpkgs": "nixpkgs_35", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_14", + "repo-git": "repo-git_14", + "rust-overlay": "rust-overlay_28", + "scaffolding": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709879507, + "narHash": "sha256-62ksNmQzgtsOlA6OFsdmVwUd6Me8g114DO9U4G23Ovk=", + "owner": "holochain", + "repo": "holochain", + "rev": "ef5d8cb9f6b57e208dff52ea173f13a1aaf46cce", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_27": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_28": { + "inputs": { + "cargo-chef": "cargo-chef_15", + "cargo-rdme": "cargo-rdme_15", + "crane": "crane_34", + "crate2nix": "crate2nix_15", + "empty": "empty_15", + "flake-compat": "flake-compat_15", + "flake-parts": "flake-parts_15", + "holochain": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_15", + "nixpkgs": "nixpkgs_36", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_15", + "repo-git": "repo-git_15", + "rust-overlay": "rust-overlay_30", + "scaffolding": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710138828, + "narHash": "sha256-MyZxoUdRrjIaiywthLfaBh2nUuvmgl8HSikKOoj9rxs=", + "owner": "holochain", + "repo": "holochain", + "rev": "5fdb77016be1925ec89cde1fffa0e9c80f9bbd92", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_29": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_3": { + "inputs": { + "cargo-chef": "cargo-chef_2", + "cargo-rdme": "cargo-rdme_2", + "crane": "crane_12", + "crate2nix": "crate2nix_2", + "empty": "empty_2", + "flake-compat": "flake-compat_2", + "flake-parts": "flake-parts_2", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_2", + "nixpkgs": "nixpkgs_13", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_2", + "repo-git": "repo-git_2", + "rust-overlay": "rust-overlay_4", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709620314, + "narHash": "sha256-d7vekpj538VqdDrChFbVQpSVGDMnU1nSksbSzacKvyM=", + "owner": "holochain", + "repo": "holochain", + "rev": "392bdfd729fb6ce50f78f9e7f1c757dc392675f4", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_30": { + "inputs": { + "cargo-chef": "cargo-chef_16", + "cargo-rdme": "cargo-rdme_16", + "crane": "crane_35", + "crate2nix": "crate2nix_16", + "empty": "empty_16", + "flake-compat": "flake-compat_16", + "flake-parts": "flake-parts_16", + "holochain": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_16", + "nixpkgs": "nixpkgs_37", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_16", + "repo-git": "repo-git_16", + "rust-overlay": "rust-overlay_32", + "scaffolding": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_31": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_32": { + "inputs": { + "cargo-chef": "cargo-chef_17", + "cargo-rdme": "cargo-rdme_17", + "crane": "crane_36", + "crate2nix": "crate2nix_17", + "empty": "empty_17", + "flake-compat": "flake-compat_17", + "flake-parts": "flake-parts_17", + "holochain": [ + "profiles", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "profiles", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "profiles", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_17", + "nixpkgs": "nixpkgs_38", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_17", + "repo-git": "repo-git_17", + "rust-overlay": "rust-overlay_34", + "scaffolding": [ + "profiles", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "profiles", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_33": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_34": { + "inputs": { + "cargo-chef": "cargo-chef_18", + "cargo-rdme": "cargo-rdme_18", + "crane": "crane_37", + "crate2nix": "crate2nix_18", + "empty": "empty_18", + "flake-compat": "flake-compat_18", + "flake-parts": "flake-parts_18", + "holochain": [ + "profiles", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "profiles", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "profiles", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_18", + "nixpkgs": "nixpkgs_39", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_18", + "repo-git": "repo-git_18", + "rust-overlay": "rust-overlay_36", + "scaffolding": [ + "profiles", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "profiles", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_35": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_36": { + "inputs": { + "cargo-chef": "cargo-chef_19", + "cargo-rdme": "cargo-rdme_19", + "crane": "crane_38", + "crate2nix": "crate2nix_19", + "empty": "empty_19", + "flake-compat": "flake-compat_19", + "flake-parts": "flake-parts_19", + "holochain": [ + "profiles", + "holochain", + "empty" + ], + "lair": [ + "profiles", + "holochain", + "empty" + ], + "launcher": [ + "profiles", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_19", + "nixpkgs": "nixpkgs_40", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_19", + "repo-git": "repo-git_19", + "rust-overlay": "rust-overlay_38", + "scaffolding": [ + "profiles", + "holochain", + "empty" + ], + "versions": [ + "profiles", + "versions" + ] + }, + "locked": { + "lastModified": 1710311478, + "narHash": "sha256-Y2tLU/pECPtIEoFAyG2MWEV5i/HU2Rw8VWq7r5Cu0rk=", + "owner": "holochain", + "repo": "holochain", + "rev": "29ca46b1f934ac112ab0df5c56a786c5cb37f2cc", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_37": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_38": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_4": { + "flake": false, + "locked": { + "lastModified": 1709081329, + "narHash": "sha256-QP7WKySgEFbgNaSc7BNBBOWCVKuycXSp4HAfD4GTug8=", + "owner": "holochain", + "repo": "holochain", + "rev": "547c63a442e61be805887b644c78cf6f970d631b", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.38", + "repo": "holochain", + "type": "github" + } + }, + "holochain_5": { + "inputs": { + "cargo-chef": "cargo-chef_3", + "cargo-rdme": "cargo-rdme_3", + "crane": "crane_13", + "crate2nix": "crate2nix_3", + "empty": "empty_3", + "flake-compat": "flake-compat_3", + "flake-parts": "flake-parts_3", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_3", + "nixpkgs": "nixpkgs_14", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_3", + "repo-git": "repo-git_3", + "rust-overlay": "rust-overlay_6", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709731345, + "narHash": "sha256-YNMiQJRbnBdTQ/Q26M5zp+j2DGtpmaI/VWPVJxc4G7k=", + "owner": "holochain", + "repo": "holochain", + "rev": "3c3d2d73819e97cb9f5487d853f75a9954850f1e", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_6": { + "flake": false, + "locked": { + "lastModified": 1709081329, + "narHash": "sha256-QP7WKySgEFbgNaSc7BNBBOWCVKuycXSp4HAfD4GTug8=", + "owner": "holochain", + "repo": "holochain", + "rev": "547c63a442e61be805887b644c78cf6f970d631b", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.38", + "repo": "holochain", + "type": "github" + } + }, + "holochain_7": { + "inputs": { + "cargo-chef": "cargo-chef_4", + "cargo-rdme": "cargo-rdme_4", + "crane": "crane_14", + "crate2nix": "crate2nix_4", + "empty": "empty_4", + "flake-compat": "flake-compat_4", + "flake-parts": "flake-parts_4", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_4", + "nixpkgs": "nixpkgs_15", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_4", + "repo-git": "repo-git_4", + "rust-overlay": "rust-overlay_8", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709879507, + "narHash": "sha256-62ksNmQzgtsOlA6OFsdmVwUd6Me8g114DO9U4G23Ovk=", + "owner": "holochain", + "repo": "holochain", + "rev": "ef5d8cb9f6b57e208dff52ea173f13a1aaf46cce", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_8": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_9": { + "inputs": { + "cargo-chef": "cargo-chef_5", + "cargo-rdme": "cargo-rdme_5", + "crane": "crane_15", + "crate2nix": "crate2nix_5", + "empty": "empty_5", + "flake-compat": "flake-compat_5", + "flake-parts": "flake-parts_5", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_5", + "nixpkgs": "nixpkgs_16", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_5", + "repo-git": "repo-git_5", + "rust-overlay": "rust-overlay_10", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710138828, + "narHash": "sha256-MyZxoUdRrjIaiywthLfaBh2nUuvmgl8HSikKOoj9rxs=", + "owner": "holochain", + "repo": "holochain", + "rev": "5fdb77016be1925ec89cde1fffa0e9c80f9bbd92", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "lair": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_10": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_11": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_12": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_13": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_14": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_15": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_16": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_17": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_18": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_19": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_2": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_3": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_4": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_5": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_6": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_7": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_8": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_9": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "launcher": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_10": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_11": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_12": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_13": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_14": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_15": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_16": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_17": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_18": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_19": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_2": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_3": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_4": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_5": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_6": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_7": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_8": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_9": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "nix-filter": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_10": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_11": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_12": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_13": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_14": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_15": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_16": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_17": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_18": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_19": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_2": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_3": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_4": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_5": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_6": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_7": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_8": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_9": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_10": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_11": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_12": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_13": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_14": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_15": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_16": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_17": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_18": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_19": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_2": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_3": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_4": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_5": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_6": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_7": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_8": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_9": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_10": { + "locked": { + "lastModified": 1706925685, + "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_11": { + "locked": { + "lastModified": 1708603017, + "narHash": "sha256-YVMXAorB6bE+y3nFJY0OUfQERI3tyLTDqd6zuPfewp8=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "2a56c2ca6814a31f8211dad09302398a06acbcdf", + "type": "github" + }, + "original": { + "owner": "nixos", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_12": { + "locked": { + "lastModified": 1708475490, + "narHash": "sha256-g1v0TsWBQPX97ziznfJdWhgMyMGtoBFs102xSYO4syU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0e74ca98a74bc7270d28838369593635a5db3260", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_13": { + "locked": { + "lastModified": 1709479366, + "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "b8697e57f10292a6165a20f03d2f42920dfaf973", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_14": { + "locked": { + "lastModified": 1709479366, + "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "b8697e57f10292a6165a20f03d2f42920dfaf973", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_15": { + "locked": { + "lastModified": 1709703039, + "narHash": "sha256-6hqgQ8OK6gsMu1VtcGKBxKQInRLHtzulDo9Z5jxHEFY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "9df3e30ce24fd28c7b3e2de0d986769db5d6225d", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_16": { + "locked": { + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_17": { + "locked": { + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_18": { + "locked": { + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_19": { + "locked": { + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_2": { + "locked": { + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_20": { + "locked": { + "lastModified": 1710272261, + "narHash": "sha256-g0bDwXFmTE7uGDOs9HcJsfLFhH7fOsASbAuOzDC+fhQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0ad13a6833440b8e238947e47bea7f11071dc2b2", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_21": { + "locked": { + "lastModified": 1710272261, + "narHash": "sha256-g0bDwXFmTE7uGDOs9HcJsfLFhH7fOsASbAuOzDC+fhQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0ad13a6833440b8e238947e47bea7f11071dc2b2", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_22": { + "locked": { + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_23": { + "locked": { + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_24": { + "locked": { + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_25": { + "locked": { + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_26": { + "locked": { + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_27": { + "locked": { + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_28": { + "locked": { + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_29": { + "locked": { + "lastModified": 1706925685, + "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_3": { + "locked": { + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_30": { + "locked": { + "lastModified": 1706925685, + "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_31": { + "locked": { + "lastModified": 1708603017, + "narHash": "sha256-YVMXAorB6bE+y3nFJY0OUfQERI3tyLTDqd6zuPfewp8=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "2a56c2ca6814a31f8211dad09302398a06acbcdf", + "type": "github" + }, + "original": { + "owner": "nixos", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_32": { + "locked": { + "lastModified": 1708475490, + "narHash": "sha256-g1v0TsWBQPX97ziznfJdWhgMyMGtoBFs102xSYO4syU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0e74ca98a74bc7270d28838369593635a5db3260", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_33": { + "locked": { + "lastModified": 1709479366, + "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "b8697e57f10292a6165a20f03d2f42920dfaf973", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_34": { + "locked": { + "lastModified": 1709479366, + "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "b8697e57f10292a6165a20f03d2f42920dfaf973", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_35": { + "locked": { + "lastModified": 1709703039, + "narHash": "sha256-6hqgQ8OK6gsMu1VtcGKBxKQInRLHtzulDo9Z5jxHEFY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "9df3e30ce24fd28c7b3e2de0d986769db5d6225d", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_36": { + "locked": { + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_37": { + "locked": { + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_38": { + "locked": { + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_39": { + "locked": { + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_4": { + "locked": { + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_40": { + "locked": { + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_5": { + "locked": { + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_6": { + "locked": { + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_7": { + "locked": { + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_8": { + "locked": { + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_9": { + "locked": { + "lastModified": 1706925685, + "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "pre-commit-hooks-nix": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_10": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_11": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_12": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_13": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_14": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_15": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_16": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_17": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_18": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_19": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_2": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_3": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_4": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_5": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_6": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_7": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_8": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_9": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "profiles": { + "inputs": { + "hcUtils": "hcUtils_11", + "holochain": "holochain_36", + "nixpkgs": [ + "profiles", + "holochain", + "nixpkgs" + ], + "versions": "versions_18" + }, + "locked": { + "lastModified": 1710410099, + "narHash": "sha256-HatD0MQ0lk7C21hn4/uZKsQYg+3yK5NihUxUyz77Qnw=", + "owner": "holochain-open-dev", + "repo": "profiles", + "rev": "671eb7eeb34a5cbd99af93362e7dd18ece402ffe", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "ref": "nixify", + "repo": "profiles", + "type": "github" + } + }, + "repo-git": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, + "repo-git_10": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, + "repo-git_11": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, + "repo-git_12": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, + "repo-git_13": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, + "repo-git_14": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, + "repo-git_15": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, + "repo-git_16": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, + "repo-git_17": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, + "repo-git_18": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, + "repo-git_19": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, + "repo-git_2": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, + "repo-git_3": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, + "repo-git_4": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, + "repo-git_5": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, + "repo-git_6": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, + "repo-git_7": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, + "repo-git_8": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, + "repo-git_9": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, + "root": { + "inputs": { + "hcUtils": "hcUtils", + "holochain": "holochain_19", + "nixpkgs": [ + "holochain", + "nixpkgs" + ], + "profiles": "profiles", + "versions": "versions_19" + } + }, + "rust-overlay": { + "inputs": { + "flake-utils": "flake-utils", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1708567842, + "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_10": { + "inputs": { + "flake-utils": "flake-utils_10", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710123130, + "narHash": "sha256-EoGL/WSM1M2L099Q91mPKO/FRV2iu2ZLOEp3y5sLfiE=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "73aca260afe5d41d3ebce932c8d896399c9d5174", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_11": { + "inputs": { + "flake-utils": "flake-utils_11", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710123130, + "narHash": "sha256-EoGL/WSM1M2L099Q91mPKO/FRV2iu2ZLOEp3y5sLfiE=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "73aca260afe5d41d3ebce932c8d896399c9d5174", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_12": { + "inputs": { + "flake-utils": "flake-utils_12", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_13": { + "inputs": { + "flake-utils": "flake-utils_13", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_14": { + "inputs": { + "flake-utils": "flake-utils_14", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_15": { + "inputs": { + "flake-utils": "flake-utils_15", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_16": { + "inputs": { + "flake-utils": "flake-utils_16", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_17": { + "inputs": { + "flake-utils": "flake-utils_17", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_18": { + "inputs": { + "flake-utils": "flake-utils_18", + "nixpkgs": [ + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710295923, + "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_19": { + "inputs": { + "flake-utils": "flake-utils_19", + "nixpkgs": [ + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710295923, + "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_2": { + "inputs": { + "flake-utils": "flake-utils_2", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1708567842, + "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_20": { + "inputs": { + "flake-utils": "flake-utils_20", + "nixpkgs": [ + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710295923, + "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_21": { + "inputs": { + "flake-utils": "flake-utils_21", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1708567842, + "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_22": { + "inputs": { + "flake-utils": "flake-utils_22", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1708567842, + "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_23": { + "inputs": { + "flake-utils": "flake-utils_23", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1708567842, + "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_24": { + "inputs": { + "flake-utils": "flake-utils_24", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1709604635, + "narHash": "sha256-le4fwmWmjGRYWwkho0Gr7mnnZndOOe4XGbLw68OvF40=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "e86c0fb5d3a22a5f30d7f64ecad88643fe26449d", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_25": { + "inputs": { + "flake-utils": "flake-utils_25", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1709604635, + "narHash": "sha256-le4fwmWmjGRYWwkho0Gr7mnnZndOOe4XGbLw68OvF40=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "e86c0fb5d3a22a5f30d7f64ecad88643fe26449d", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_26": { + "inputs": { + "flake-utils": "flake-utils_26", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1709691047, + "narHash": "sha256-2Vwx1FLufoMEcOS8KAwP8H83IP3Hw6ZPrIDHkSXrFCY=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "d55139f3061cdf2c8f5f7bc8d49e884826e6a4ea", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_27": { + "inputs": { + "flake-utils": "flake-utils_27", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1709691047, + "narHash": "sha256-2Vwx1FLufoMEcOS8KAwP8H83IP3Hw6ZPrIDHkSXrFCY=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "d55139f3061cdf2c8f5f7bc8d49e884826e6a4ea", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_28": { + "inputs": { + "flake-utils": "flake-utils_28", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1709863839, + "narHash": "sha256-QpEL5FmZNi2By3sKZY55wGniFXc4wEn9PQczlE8TG0o=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "e5ab9ee98f479081ad971473d2bc13c59e9fbc0a", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_29": { + "inputs": { + "flake-utils": "flake-utils_29", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1709863839, + "narHash": "sha256-QpEL5FmZNi2By3sKZY55wGniFXc4wEn9PQczlE8TG0o=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "e5ab9ee98f479081ad971473d2bc13c59e9fbc0a", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_3": { + "inputs": { + "flake-utils": "flake-utils_3", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1708567842, + "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_30": { + "inputs": { + "flake-utils": "flake-utils_30", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710123130, + "narHash": "sha256-EoGL/WSM1M2L099Q91mPKO/FRV2iu2ZLOEp3y5sLfiE=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "73aca260afe5d41d3ebce932c8d896399c9d5174", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_31": { + "inputs": { + "flake-utils": "flake-utils_31", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710123130, + "narHash": "sha256-EoGL/WSM1M2L099Q91mPKO/FRV2iu2ZLOEp3y5sLfiE=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "73aca260afe5d41d3ebce932c8d896399c9d5174", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_32": { + "inputs": { + "flake-utils": "flake-utils_32", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_33": { + "inputs": { + "flake-utils": "flake-utils_33", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_34": { + "inputs": { + "flake-utils": "flake-utils_34", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_35": { + "inputs": { + "flake-utils": "flake-utils_35", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_36": { + "inputs": { + "flake-utils": "flake-utils_36", + "nixpkgs": [ + "profiles", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_37": { + "inputs": { + "flake-utils": "flake-utils_37", + "nixpkgs": [ + "profiles", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_38": { + "inputs": { + "flake-utils": "flake-utils_38", + "nixpkgs": [ + "profiles", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710295923, + "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_4": { + "inputs": { + "flake-utils": "flake-utils_4", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1709604635, + "narHash": "sha256-le4fwmWmjGRYWwkho0Gr7mnnZndOOe4XGbLw68OvF40=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "e86c0fb5d3a22a5f30d7f64ecad88643fe26449d", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_5": { + "inputs": { + "flake-utils": "flake-utils_5", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1709604635, + "narHash": "sha256-le4fwmWmjGRYWwkho0Gr7mnnZndOOe4XGbLw68OvF40=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "e86c0fb5d3a22a5f30d7f64ecad88643fe26449d", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_6": { + "inputs": { + "flake-utils": "flake-utils_6", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1709691047, + "narHash": "sha256-2Vwx1FLufoMEcOS8KAwP8H83IP3Hw6ZPrIDHkSXrFCY=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "d55139f3061cdf2c8f5f7bc8d49e884826e6a4ea", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_7": { + "inputs": { + "flake-utils": "flake-utils_7", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1709691047, + "narHash": "sha256-2Vwx1FLufoMEcOS8KAwP8H83IP3Hw6ZPrIDHkSXrFCY=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "d55139f3061cdf2c8f5f7bc8d49e884826e6a4ea", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_8": { + "inputs": { + "flake-utils": "flake-utils_8", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1709863839, + "narHash": "sha256-QpEL5FmZNi2By3sKZY55wGniFXc4wEn9PQczlE8TG0o=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "e5ab9ee98f479081ad971473d2bc13c59e9fbc0a", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_9": { + "inputs": { + "flake-utils": "flake-utils_9", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1709863839, + "narHash": "sha256-QpEL5FmZNi2By3sKZY55wGniFXc4wEn9PQczlE8TG0o=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "e5ab9ee98f479081ad971473d2bc13c59e9fbc0a", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "scaffolding": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_10": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_11": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_12": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_13": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_14": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_15": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_16": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_17": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_18": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_19": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_2": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_3": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_4": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_5": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_6": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_7": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_8": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_9": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_10": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_11": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_12": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_13": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_14": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_15": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_16": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_17": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_18": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_19": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_2": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_20": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_21": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_22": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_23": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_24": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_25": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_26": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_27": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_28": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_29": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_3": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_30": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_31": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_32": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_33": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_34": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_35": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_36": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_37": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_38": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_4": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_5": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_6": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_7": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_8": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_9": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "versions": { + "inputs": { + "holochain": "holochain_2", + "lair": "lair", + "launcher": "launcher", + "scaffolding": "scaffolding" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1708595708, + "narHash": "sha256-coOhtMii+epTQobSAj1qGfVYbN9Rs0oB+Rj6ZePqKIU=", + "owner": "holochain", + "repo": "holochain", + "rev": "e2fd7138bfeb1185a245421eefb2f83d237eccef", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_10": { + "inputs": { + "holochain": "holochain_21", + "lair": "lair_10", + "launcher": "launcher_10", + "scaffolding": "scaffolding_10" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1708595708, + "narHash": "sha256-coOhtMii+epTQobSAj1qGfVYbN9Rs0oB+Rj6ZePqKIU=", + "owner": "holochain", + "repo": "holochain", + "rev": "e2fd7138bfeb1185a245421eefb2f83d237eccef", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_11": { + "inputs": { + "holochain": "holochain_23", + "lair": "lair_11", + "launcher": "launcher_11", + "scaffolding": "scaffolding_11" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1709620314, + "narHash": "sha256-d7vekpj538VqdDrChFbVQpSVGDMnU1nSksbSzacKvyM=", + "owner": "holochain", + "repo": "holochain", + "rev": "392bdfd729fb6ce50f78f9e7f1c757dc392675f4", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_12": { + "inputs": { + "holochain": "holochain_25", + "lair": "lair_12", + "launcher": "launcher_12", + "scaffolding": "scaffolding_12" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1709731345, + "narHash": "sha256-YNMiQJRbnBdTQ/Q26M5zp+j2DGtpmaI/VWPVJxc4G7k=", + "owner": "holochain", + "repo": "holochain", + "rev": "3c3d2d73819e97cb9f5487d853f75a9954850f1e", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_13": { + "inputs": { + "holochain": "holochain_27", + "lair": "lair_13", + "launcher": "launcher_13", + "scaffolding": "scaffolding_13" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1709879507, + "narHash": "sha256-62ksNmQzgtsOlA6OFsdmVwUd6Me8g114DO9U4G23Ovk=", + "owner": "holochain", + "repo": "holochain", + "rev": "ef5d8cb9f6b57e208dff52ea173f13a1aaf46cce", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_14": { + "inputs": { + "holochain": "holochain_29", + "lair": "lair_14", + "launcher": "launcher_14", + "scaffolding": "scaffolding_14" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710138828, + "narHash": "sha256-MyZxoUdRrjIaiywthLfaBh2nUuvmgl8HSikKOoj9rxs=", + "owner": "holochain", + "repo": "holochain", + "rev": "5fdb77016be1925ec89cde1fffa0e9c80f9bbd92", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_15": { + "inputs": { + "holochain": "holochain_31", + "lair": "lair_15", + "launcher": "launcher_15", + "scaffolding": "scaffolding_15" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_16": { + "inputs": { + "holochain": "holochain_33", + "lair": "lair_16", + "launcher": "launcher_16", + "scaffolding": "scaffolding_16" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_17": { + "inputs": { + "holochain": "holochain_35", + "lair": "lair_17", + "launcher": "launcher_17", + "scaffolding": "scaffolding_17" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_18": { + "inputs": { + "holochain": "holochain_37", + "lair": "lair_18", + "launcher": "launcher_18", + "scaffolding": "scaffolding_18" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710311478, + "narHash": "sha256-Y2tLU/pECPtIEoFAyG2MWEV5i/HU2Rw8VWq7r5Cu0rk=", + "owner": "holochain", + "repo": "holochain", + "rev": "29ca46b1f934ac112ab0df5c56a786c5cb37f2cc", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_19": { + "inputs": { + "holochain": "holochain_38", + "lair": "lair_19", + "launcher": "launcher_19", + "scaffolding": "scaffolding_19" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", + "owner": "holochain", + "repo": "holochain", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_2": { + "inputs": { + "holochain": "holochain_4", + "lair": "lair_2", + "launcher": "launcher_2", + "scaffolding": "scaffolding_2" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1709620314, + "narHash": "sha256-d7vekpj538VqdDrChFbVQpSVGDMnU1nSksbSzacKvyM=", + "owner": "holochain", + "repo": "holochain", + "rev": "392bdfd729fb6ce50f78f9e7f1c757dc392675f4", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_3": { + "inputs": { + "holochain": "holochain_6", + "lair": "lair_3", + "launcher": "launcher_3", + "scaffolding": "scaffolding_3" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1709731345, + "narHash": "sha256-YNMiQJRbnBdTQ/Q26M5zp+j2DGtpmaI/VWPVJxc4G7k=", + "owner": "holochain", + "repo": "holochain", + "rev": "3c3d2d73819e97cb9f5487d853f75a9954850f1e", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_4": { + "inputs": { + "holochain": "holochain_8", + "lair": "lair_4", + "launcher": "launcher_4", + "scaffolding": "scaffolding_4" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1709879507, + "narHash": "sha256-62ksNmQzgtsOlA6OFsdmVwUd6Me8g114DO9U4G23Ovk=", + "owner": "holochain", + "repo": "holochain", + "rev": "ef5d8cb9f6b57e208dff52ea173f13a1aaf46cce", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_5": { + "inputs": { + "holochain": "holochain_10", + "lair": "lair_5", + "launcher": "launcher_5", + "scaffolding": "scaffolding_5" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710138828, + "narHash": "sha256-MyZxoUdRrjIaiywthLfaBh2nUuvmgl8HSikKOoj9rxs=", + "owner": "holochain", + "repo": "holochain", + "rev": "5fdb77016be1925ec89cde1fffa0e9c80f9bbd92", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_6": { + "inputs": { + "holochain": "holochain_12", + "lair": "lair_6", + "launcher": "launcher_6", + "scaffolding": "scaffolding_6" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_7": { + "inputs": { + "holochain": "holochain_14", + "lair": "lair_7", + "launcher": "launcher_7", + "scaffolding": "scaffolding_7" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_8": { + "inputs": { + "holochain": "holochain_16", + "lair": "lair_8", + "launcher": "launcher_8", + "scaffolding": "scaffolding_8" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_9": { + "inputs": { + "holochain": "holochain_18", + "lair": "lair_9", + "launcher": "launcher_9", + "scaffolding": "scaffolding_9" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", + "owner": "holochain", + "repo": "holochain", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/crates/sync-npm-git-dependencies-with-nix/fixture/flake.nix b/crates/sync-npm-git-dependencies-with-nix/fixture/flake.nix new file mode 100644 index 0000000..addf7a0 --- /dev/null +++ b/crates/sync-npm-git-dependencies-with-nix/fixture/flake.nix @@ -0,0 +1,59 @@ +{ + description = "Template for Holochain app development"; + + inputs = { + nixpkgs.follows = "holochain/nixpkgs"; + + versions.url = "github:holochain/holochain?dir=versions/weekly"; + + holochain = { + url = "github:holochain/holochain"; + inputs.versions.follows = "versions"; + }; + hcUtils.url = "path:../../.."; + profiles.url = "github:holochain-open-dev/profiles/nixify"; + }; + + outputs = inputs @ { ... }: + let + holochainSources = inputs': with inputs'; [ + profiles + # ... and add the name of the repository here as well + ]; + + # Holochain packages coming from the upstream repositories + upstreamHolochainPackages = { inputs' }: inputs.nixpkgs.lib.attrsets.mergeAttrsList ( + builtins.map (s: s.packages) (holochainSources inputs') + ); + # All holochain packages from this _and_ the upstream repositories, combined + allHolochainPackages = { inputs', self' }: inputs.nixpkgs.lib.attrsets.mergeAttrsList [ + self'.packages + (upstreamHolochainPackages { inherit inputs'; }) + ]; + allZomes = { inputs', self' }: inputs.hcUtils.outputs.lib.filterZomes (allHolochainPackages { inherit inputs' self'; }); + allDnas = { inputs', self' }: inputs.hcUtils.outputs.lib.filterDnas (allHolochainPackages { inherit inputs' self'; }); + allHapps = { inputs', self' }: inputs.hcUtils.outputs.lib.filterHapps (allHolochainPackages { inherit inputs' self'; }); + in + inputs.holochain.inputs.flake-parts.lib.mkFlake + { + inherit inputs; + specialArgs = { + rootPath = ./.; + inherit holochainSources allHolochainPackages allZomes allDnas allHapps; + }; + } + { + + systems = builtins.attrNames inputs.holochain.devShells; + perSystem = + { inputs' + , config + , pkgs + , system + , lib + , self' + , ... + }: { + }; + }; +} diff --git a/nix/fixtures/app-repo/app/package.json b/crates/sync-npm-git-dependencies-with-nix/fixture/package.json similarity index 62% rename from nix/fixtures/app-repo/app/package.json rename to crates/sync-npm-git-dependencies-with-nix/fixture/package.json index 8047987..8abd438 100644 --- a/nix/fixtures/app-repo/app/package.json +++ b/crates/sync-npm-git-dependencies-with-nix/fixture/package.json @@ -1,17 +1,17 @@ { - "name": "app", "author": "", - "scripts": { - "build": "", - "start": "node index.js" - }, "dependencies": { - "service": "X" + "@holochain-open-dev/profiles": "github:holochain-open-dev/profiles#671eb7eeb34a5cbd99af93362e7dd18ece402ffe&path:ui" }, "description": "", "keywords": [], "license": "ISC", "main": "index.js", + "name": "zome", + "scripts": { + "build": "", + "start": "node index.js" + }, "type": "module", "version": "1.0.0" } diff --git a/crates/sync-npm-git-dependencies-with-nix/src/main.rs b/crates/sync-npm-git-dependencies-with-nix/src/main.rs new file mode 100644 index 0000000..2803bc7 --- /dev/null +++ b/crates/sync-npm-git-dependencies-with-nix/src/main.rs @@ -0,0 +1,104 @@ +use anyhow::{anyhow, Result}; +use ignore::Walk; +use parse_flake_lock::{FlakeLock, Node}; +use regex::Regex; +use serde_json::Value; +use std::{fs::File, io::BufReader, path::Path, process::Command}; + +fn main() -> Result<()> { + let flake_lock = FlakeLock::new(Path::new("flake.lock"))?; + + let mut announced = false; + let mut replaced_some_dep = false; + + for entry in Walk::new(".").into_iter().filter_map(|e| e.ok()) { + let f_name = entry.file_name().to_string_lossy(); + + if f_name == "package.json" { + let file = File::open(entry.path())?; + let reader = BufReader::new(file); + let mut package_json_contents: Value = serde_json::from_reader(reader)?; + + if let Some(Value::Object(deps)) = package_json_contents.get_mut("dependencies") { + let re = Regex::new(r#"(github|gitlab):([^/]+)/([^#]+)#([^&"]+)(&.*)?$"#)?; + + for (_package, dependency_source) in deps { + if let Value::String(dependency_source_str) = dependency_source.clone() { + if let Some(captures) = re.captures(&dependency_source_str) { + let git_host = captures + .get(1) + .ok_or(anyhow!( + "Error parsing git username for dependency {dependency_source_str}" + ))? + .as_str(); + let git_owner = captures + .get(2) + .ok_or(anyhow!( + "Error parsing git owner for dependency {dependency_source_str}" + ))? + .as_str(); + let git_repo = captures + .get(3) + .ok_or(anyhow!( + "Error parsing git repository for dependency {dependency_source_str}" + ))? + .as_str(); + let revision = captures + .get(4) + .ok_or(anyhow!( + "Error parsing git revision for dependency {dependency_source_str}" + ))? + .as_str(); + let query_arguments = captures + .get(5) + .ok_or(anyhow!( + "Error parsing query arguments for dependency {dependency_source_str}" + ))? + .as_str(); + + for root_node in flake_lock.root.values() { + if let Node::Repo(repo_node) = root_node { + if repo_node.locked.owner == git_owner + && repo_node.locked.repo == git_repo + && revision != repo_node.locked.rev + { + *dependency_source = Value::String(format!( + "{git_host}:{git_owner}/{git_repo}#{}{query_arguments}", + repo_node.locked.rev + )); + + if !announced { + announced = true; + println!(""); + println!( + "Synchronizing npm git dependencies with the upstream nix sources..." + ); + } + + println!( + " - Setting dependency \"{git_host}:{git_owner}/{git_repo}\" in file {:?} to rev \"{}\"", + entry.path(), repo_node.locked.rev + ); + replaced_some_dep = true; + } + } + } + } + } + } + } + + let st = serde_json::to_string_pretty(&package_json_contents)?; + + std::fs::write(entry.path(), st)?; + } + } + + if replaced_some_dep { + println!("Running pnpm install..."); + Command::new("pnpm").arg("install").output()?; + println!("Successfully synchronized npm dependencies with nix"); + } + + Ok(()) +} diff --git a/flake.nix b/flake.nix index 3c72d03..d0f4792 100644 --- a/flake.nix +++ b/flake.nix @@ -29,59 +29,24 @@ }; outputs = inputs @ { ... }: - let - replaceNpmDependenciesSources = system: - let - craneLib = inputs.crane.lib.${system}; - - cratePath = ./crates/replace-npm-dependencies-sources; - - cargoToml = builtins.fromTOML (builtins.readFile "${cratePath}/Cargo.toml"); - crate = cargoToml.package.name; - - commonArgs = { - strictDeps = true; - doCheck = false; - src = craneLib.cleanCargoSource (craneLib.path cratePath); - }; - in - craneLib.buildPackage (commonArgs // { - pname = crate; - version = cargoToml.package.version; - }); - in - inputs.holochain.inputs.flake-parts.lib.mkFlake - { - inherit inputs; - } - { - flake = { - lib = rec { - filterByHolochainPackageType = holochainPackageType: packages: inputs.nixpkgs.lib.filterAttrs (key: value: (builtins.hasAttr "meta" value) && (builtins.hasAttr "holochainPackageType" value.meta) && value.meta.holochainPackageType == holochainPackageType) packages; - - filterZomes = filterByHolochainPackageType "zome"; - filterDnas = filterByHolochainPackageType "dna"; - filterHapps = filterByHolochainPackageType "happ"; - filterNpmPackages = filterByHolochainPackageType "npm"; - - rustZome = { crateCargoToml, holochain, workspacePath, excludedCrates ? [] }: - let - deterministicCraneLib = let - system = "x86_64-linux"; - pkgs = import inputs.nixpkgs { - inherit system; - overlays = [ (import inputs.rust-overlay) ]; - }; - - rustToolchain = pkgs.rust-bin.stable."1.75.0".minimal.override { - # Set the build targets supported by the toolchain, - # wasm32-unknown-unknown is required for trunk. - targets = [ "wasm32-unknown-unknown" ]; - }; - in - inputs.crane.lib.${system}.overrideToolchain rustToolchain; - - system = holochain.legacyPackages.cowsay.system; + inputs.holochain.inputs.flake-parts.lib.mkFlake + { + inherit inputs; + } + { + flake = { + lib = rec { + filterByHolochainPackageType = holochainPackageType: packages: inputs.nixpkgs.lib.filterAttrs (key: value: (builtins.hasAttr "meta" value) && (builtins.hasAttr "holochainPackageType" value.meta) && value.meta.holochainPackageType == holochainPackageType) packages; + + filterZomes = filterByHolochainPackageType "zome"; + filterDnas = filterByHolochainPackageType "dna"; + filterHapps = filterByHolochainPackageType "happ"; + filterNpmPackages = filterByHolochainPackageType "npm"; + + rustZome = { crateCargoToml, holochain, workspacePath, excludedCrates ? [] }: + let + deterministicCraneLib = let + system = "x86_64-linux"; pkgs = import inputs.nixpkgs { inherit system; overlays = [ (import inputs.rust-overlay) ]; @@ -92,96 +57,116 @@ # wasm32-unknown-unknown is required for trunk. targets = [ "wasm32-unknown-unknown" ]; }; - craneLib = inputs.crane.lib.${system}.overrideToolchain rustToolchain; - in - pkgs.callPackage ./nix/zome.nix { - inherit deterministicCraneLib craneLib crateCargoToml excludedCrates workspacePath; - }; - sweettest = { holochain, dna, workspacePath, crateCargoToml }: - let - system = holochain.devShells.holonix.system; - pkgs = import inputs.nixpkgs { - inherit system; - overlays = [ (import inputs.rust-overlay) ]; - }; - rustToolchain = pkgs.rust-bin.stable."1.75.0".minimal.override { - # Set the build targets supported by the toolchain, - # wasm32-unknown-unknown is required for trunk. - targets = [ "wasm32-unknown-unknown" ]; - }; - craneLib = inputs.crane.lib.${system}.overrideToolchain rustToolchain; - in pkgs.callPackage ./nix/sweettest.nix { - inherit holochain dna craneLib workspacePath crateCargoToml; + inputs.crane.lib.${system}.overrideToolchain rustToolchain; + + system = holochain.legacyPackages.cowsay.system; + pkgs = import inputs.nixpkgs { + inherit system; + overlays = [ (import inputs.rust-overlay) ]; + }; + + rustToolchain = pkgs.rust-bin.stable."1.75.0".minimal.override { + # Set the build targets supported by the toolchain, + # wasm32-unknown-unknown is required for trunk. + targets = [ "wasm32-unknown-unknown" ]; + }; + craneLib = inputs.crane.lib.${system}.overrideToolchain rustToolchain; + + in + pkgs.callPackage ./nix/zome.nix { + inherit deterministicCraneLib craneLib crateCargoToml excludedCrates workspacePath; }; - dna = { holochain, dnaManifest, zomes }: - let - system = holochain.devShells.holonix.system; - pkgs = import inputs.nixpkgs { - inherit system; - overlays = [ (import inputs.rust-overlay) ]; - }; - in - pkgs.callPackage ./nix/dna.nix { - inherit zomes holochain dnaManifest; - }; - happ = { holochain, happManifest, dnas }: - let - system = holochain.devShells.holonix.system; - pkgs = import inputs.nixpkgs { - inherit system; - overlays = [ (import inputs.rust-overlay) ]; - }; - in - pkgs.callPackage ./nix/happ.nix { - inherit dnas holochain happManifest; - }; - npmPackage = { system, workspacePath, rootPath }: - let - pkgs = import inputs.nixpkgs { - inherit system; - overlays = [ (import inputs.rust-overlay) ]; - }; - in - pkgs.callPackage ./nix/npm-package.nix { - inherit workspacePath rootPath; - }; - syncNpmDependenciesWithNix = { system, holochainPackages }: - let - pkgs = import inputs.nixpkgs { - inherit system; - }; - in - pkgs.writeShellScriptBin "sync-npm-dependencies-with-nix" '' - ${replaceNpmDependenciesSources system}/bin/replace-npm-dependencies-sources \ - ${builtins.toString ( - builtins.map (p: "${p.meta.packageName}=file:${p.outPath}/lib") - (builtins.attrValues (holochainPackages)) - )} - ''; - }; - }; - - systems = builtins.attrNames inputs.holochain.devShells; - perSystem = - { inputs' - , config - , pkgs - , system - , lib - , ... - }: { - - devShells.default = pkgs.mkShell { - inputsFrom = [ inputs'.holochain.devShells.holonix ]; - packages = with pkgs; [ - nodejs-18_x - # more packages go here - cargo-nextest - ]; - }; - - packages.replace-npm-dependencies-sources = replaceNpmDependenciesSources system; - }; - }; + sweettest = { holochain, dna, workspacePath, crateCargoToml }: + let + system = holochain.devShells.holonix.system; + pkgs = import inputs.nixpkgs { + inherit system; + overlays = [ (import inputs.rust-overlay) ]; + }; + rustToolchain = pkgs.rust-bin.stable."1.75.0".minimal.override { + # Set the build targets supported by the toolchain, + # wasm32-unknown-unknown is required for trunk. + targets = [ "wasm32-unknown-unknown" ]; + }; + craneLib = inputs.crane.lib.${system}.overrideToolchain rustToolchain; + in pkgs.callPackage ./nix/sweettest.nix { + inherit holochain dna craneLib workspacePath crateCargoToml; + }; + dna = { holochain, dnaManifest, zomes }: + let + system = holochain.devShells.holonix.system; + pkgs = import inputs.nixpkgs { + inherit system; + overlays = [ (import inputs.rust-overlay) ]; + }; + in + pkgs.callPackage ./nix/dna.nix { + inherit zomes holochain dnaManifest; + }; + happ = { holochain, happManifest, dnas }: + let + system = holochain.devShells.holonix.system; + pkgs = import inputs.nixpkgs { + inherit system; + overlays = [ (import inputs.rust-overlay) ]; + }; + in + pkgs.callPackage ./nix/happ.nix { + inherit dnas holochain happManifest; + }; + }; + }; + + systems = builtins.attrNames inputs.holochain.devShells; + perSystem = + { inputs' + , config + , pkgs + , system + , lib + , ... + }: { + + devShells.default = pkgs.mkShell { + inputsFrom = [ inputs'.holochain.devShells.holonix ]; + packages = with pkgs; [ + nodejs-18_x + # more packages go here + cargo-nextest + ]; + }; + + packages.sync-npm-git-dependencies-with-nix = + let + craneLib = inputs.crane.lib.${system}; + + cratePath = ./crates/sync-npm-git-dependencies-with-nix; + + cargoToml = builtins.fromTOML (builtins.readFile "${cratePath}/Cargo.toml"); + crate = cargoToml.package.name; + + commonArgs = { + strictDeps = true; + doCheck = false; + src = craneLib.cleanCargoSource (craneLib.path cratePath); + }; + in + craneLib.buildPackage (commonArgs // { + pname = crate; + version = cargoToml.package.version; + }); + + packages.pnpm = pkgs.stdenv.mkDerivation { + pname ="pnpm"; + version ="pnpm-9"; + buildInputs = [ pkgs.nodejs_20 ]; + phases = ["installPhase"]; + installPhase = '' + mkdir -p $out/bin + corepack enable pnpm --install-directory=$out/bin + ''; + }; + }; + }; } diff --git a/nix/fixtures/.package-lock.json b/nix/fixtures/.package-lock.json deleted file mode 100644 index cea6940..0000000 --- a/nix/fixtures/.package-lock.json +++ /dev/null @@ -1,60 +0,0 @@ -{ - "name": "fixture", - "version": "1.0.0", - "lockfileVersion": 3, - "requires": true, - "packages": { - "../../../../../../../../nix/store/cywpx2ixlp41ni71wm22csz536w713k0--holochain-open-dev-profiles/lib": { - "name": "@holochain-open-dev/profiles", - "version": "0.17.2", - "license": "MIT", - "dependencies": { - "@holochain-open-dev/elements": "^0.8.3", - "@holochain-open-dev/stores": "^0.8.11", - "@holochain-open-dev/utils": "^0.16.2", - "@holochain/client": "^0.17.0-dev.7", - "@lit/context": "^1.0.1", - "@lit/localize": "^0.12.0", - "@mdi/js": "^7.1.96", - "@shoelace-style/shoelace": "^2.11.0", - "lit": "^3.0.2" - }, - "devDependencies": { - "@custom-elements-manifest/analyzer": "^0.5.7", - "@lit/localize-tools": "^0.6.3", - "@open-wc/eslint-config": "^2.0.0", - "@types/node": "14.11.1", - "@typescript-eslint/eslint-plugin": "^5.49.0", - "@typescript-eslint/parser": "^5.49.0", - "bestzip": "^2.2.1", - "concurrently": "^5.1.0", - "deepmerge": "^3.2.0", - "eslint": "^7.1.0", - "eslint-config-prettier": "^6.11.0", - "prettier": "^2.0.4", - "tslib": "^2.0.0", - "typescript": "^4.9.0", - "vite": "^4.0.4", - "vite-plugin-checker": "^0.5.3" - } - }, - "../../../../../../../../nix/store/hqsw2yppsm6gr4jdrqmxlrdm48j1397c--holochain-open-dev-profiles-0.0.0/lib": { - "extraneous": true - }, - "node_modules/zome": { - "resolved": "zome", - "link": true - }, - "zome": { - "version": "1.0.0", - "license": "ISC", - "dependencies": { - "@holochain-open-dev/profiles": "file:/nix/store/cywpx2ixlp41ni71wm22csz536w713k0--holochain-open-dev-profiles/lib" - } - }, - "zome/node_modules/@holochain-open-dev/profiles": { - "resolved": "../../../../../../../../nix/store/cywpx2ixlp41ni71wm22csz536w713k0--holochain-open-dev-profiles/lib", - "link": true - } - } -} diff --git a/nix/fixtures/app-repo/app/index.js b/nix/fixtures/app-repo/app/index.js deleted file mode 100644 index 02c5374..0000000 --- a/nix/fixtures/app-repo/app/index.js +++ /dev/null @@ -1 +0,0 @@ -import { } from '@holochain-open-dev/profiles'; diff --git a/nix/fixtures/app-repo/flake.lock b/nix/fixtures/app-repo/flake.lock index aba4b8e..8ef3d0b 100644 --- a/nix/fixtures/app-repo/flake.lock +++ b/nix/fixtures/app-repo/flake.lock @@ -204,6 +204,176 @@ "type": "github" } }, + "cargo-chef_20": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_21": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_22": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_23": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_24": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_25": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_26": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_27": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_28": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_29": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, "cargo-chef_3": { "flake": false, "locked": { @@ -221,6 +391,23 @@ "type": "github" } }, + "cargo-chef_30": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, "cargo-chef_4": { "flake": false, "locked": { @@ -527,7 +714,7 @@ "type": "github" } }, - "cargo-rdme_3": { + "cargo-rdme_20": { "flake": false, "locked": { "lastModified": 1675118998, @@ -544,7 +731,7 @@ "type": "github" } }, - "cargo-rdme_4": { + "cargo-rdme_21": { "flake": false, "locked": { "lastModified": 1675118998, @@ -561,7 +748,7 @@ "type": "github" } }, - "cargo-rdme_5": { + "cargo-rdme_22": { "flake": false, "locked": { "lastModified": 1675118998, @@ -578,7 +765,7 @@ "type": "github" } }, - "cargo-rdme_6": { + "cargo-rdme_23": { "flake": false, "locked": { "lastModified": 1675118998, @@ -595,7 +782,7 @@ "type": "github" } }, - "cargo-rdme_7": { + "cargo-rdme_24": { "flake": false, "locked": { "lastModified": 1675118998, @@ -612,7 +799,7 @@ "type": "github" } }, - "cargo-rdme_8": { + "cargo-rdme_25": { "flake": false, "locked": { "lastModified": 1675118998, @@ -629,7 +816,7 @@ "type": "github" } }, - "cargo-rdme_9": { + "cargo-rdme_26": { "flake": false, "locked": { "lastModified": 1675118998, @@ -646,73 +833,260 @@ "type": "github" } }, - "crane": { - "inputs": { - "nixpkgs": "nixpkgs" - }, + "cargo-rdme_27": { + "flake": false, "locked": { - "lastModified": 1710003968, - "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", - "owner": "ipetkov", - "repo": "crane", - "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", "type": "github" }, "original": { - "owner": "ipetkov", - "repo": "crane", + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", "type": "github" } }, - "crane_10": { - "inputs": { - "nixpkgs": "nixpkgs_10" - }, + "cargo-rdme_28": { + "flake": false, "locked": { - "lastModified": 1708560786, - "narHash": "sha256-gcTA/iq9mfrwGPQsoxVryWhCAgBwL2GJLGO/s06/0wY=", - "owner": "ipetkov", - "repo": "crane", - "rev": "9a5972e2e8d0b1716cc4e42af8b75eca6914fbff", + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", "type": "github" }, "original": { - "owner": "ipetkov", - "repo": "crane", + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", "type": "github" } }, - "crane_11": { - "inputs": { - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ] - }, + "cargo-rdme_29": { + "flake": false, "locked": { - "lastModified": 1707363936, - "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", - "owner": "ipetkov", - "repo": "crane", - "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", "type": "github" }, "original": { - "owner": "ipetkov", - "repo": "crane", + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", "type": "github" } }, - "crane_12": { + "cargo-rdme_3": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_30": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_4": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_5": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_6": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_7": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_8": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_9": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "crane": { + "inputs": { + "nixpkgs": "nixpkgs" + }, + "locked": { + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", + "owner": "ipetkov", + "repo": "crane", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_10": { + "inputs": { + "nixpkgs": "nixpkgs_10" + }, + "locked": { + "lastModified": 1708560786, + "narHash": "sha256-gcTA/iq9mfrwGPQsoxVryWhCAgBwL2GJLGO/s06/0wY=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9a5972e2e8d0b1716cc4e42af8b75eca6914fbff", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_11": { + "inputs": { + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_12": { "inputs": { "nixpkgs": [ "hcUtils", @@ -1032,11 +1406,11 @@ "nixpkgs": "nixpkgs_26" }, "locked": { - "lastModified": 1709610799, - "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", "owner": "ipetkov", "repo": "crane", - "rev": "81c393c776d5379c030607866afef6406ca1be57", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", "type": "github" }, "original": { @@ -1086,11 +1460,11 @@ "nixpkgs": "nixpkgs_29" }, "locked": { - "lastModified": 1708560786, - "narHash": "sha256-gcTA/iq9mfrwGPQsoxVryWhCAgBwL2GJLGO/s06/0wY=", + "lastModified": 1709610799, + "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", "owner": "ipetkov", "repo": "crane", - "rev": "9a5972e2e8d0b1716cc4e42af8b75eca6914fbff", + "rev": "81c393c776d5379c030607866afef6406ca1be57", "type": "github" }, "original": { @@ -1136,9 +1510,28 @@ } }, "crane_30": { + "inputs": { + "nixpkgs": "nixpkgs_31" + }, + "locked": { + "lastModified": 1708560786, + "narHash": "sha256-gcTA/iq9mfrwGPQsoxVryWhCAgBwL2GJLGO/s06/0wY=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9a5972e2e8d0b1716cc4e42af8b75eca6914fbff", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_31": { "inputs": { "nixpkgs": [ - "profiles", + "service", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -1165,10 +1558,11 @@ "type": "github" } }, - "crane_31": { + "crane_32": { "inputs": { "nixpkgs": [ - "profiles", + "service", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -1194,10 +1588,11 @@ "type": "github" } }, - "crane_32": { + "crane_33": { "inputs": { "nixpkgs": [ - "profiles", + "service", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -1222,10 +1617,11 @@ "type": "github" } }, - "crane_33": { + "crane_34": { "inputs": { "nixpkgs": [ - "profiles", + "service", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -1249,10 +1645,11 @@ "type": "github" } }, - "crane_34": { + "crane_35": { "inputs": { "nixpkgs": [ - "profiles", + "service", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -1275,10 +1672,11 @@ "type": "github" } }, - "crane_35": { + "crane_36": { "inputs": { "nixpkgs": [ - "profiles", + "service", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -1300,10 +1698,11 @@ "type": "github" } }, - "crane_36": { + "crane_37": { "inputs": { "nixpkgs": [ - "profiles", + "service", + "hcUtils", "hcUtils", "hcUtils", "holochain", @@ -1324,10 +1723,11 @@ "type": "github" } }, - "crane_37": { + "crane_38": { "inputs": { "nixpkgs": [ - "profiles", + "service", + "hcUtils", "hcUtils", "holochain", "nixpkgs" @@ -1347,10 +1747,11 @@ "type": "github" } }, - "crane_38": { + "crane_39": { "inputs": { "nixpkgs": [ - "profiles", + "service", + "hcUtils", "holochain", "nixpkgs" ] @@ -1387,9 +1788,31 @@ "type": "github" } }, - "crane_5": { + "crane_40": { "inputs": { - "nixpkgs": "nixpkgs_5" + "nixpkgs": [ + "service", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_41": { + "inputs": { + "nixpkgs": "nixpkgs_43" }, "locked": { "lastModified": 1710003968, @@ -1405,16 +1828,16 @@ "type": "github" } }, - "crane_6": { + "crane_42": { "inputs": { - "nixpkgs": "nixpkgs_6" + "nixpkgs": "nixpkgs_44" }, "locked": { - "lastModified": 1709610799, - "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", "owner": "ipetkov", "repo": "crane", - "rev": "81c393c776d5379c030607866afef6406ca1be57", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", "type": "github" }, "original": { @@ -1423,16 +1846,16 @@ "type": "github" } }, - "crane_7": { + "crane_43": { "inputs": { - "nixpkgs": "nixpkgs_7" + "nixpkgs": "nixpkgs_45" }, "locked": { - "lastModified": 1709610799, - "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", "owner": "ipetkov", "repo": "crane", - "rev": "81c393c776d5379c030607866afef6406ca1be57", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", "type": "github" }, "original": { @@ -1441,16 +1864,16 @@ "type": "github" } }, - "crane_8": { + "crane_44": { "inputs": { - "nixpkgs": "nixpkgs_8" + "nixpkgs": "nixpkgs_46" }, "locked": { - "lastModified": 1709610799, - "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", "owner": "ipetkov", "repo": "crane", - "rev": "81c393c776d5379c030607866afef6406ca1be57", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", "type": "github" }, "original": { @@ -1459,16 +1882,16 @@ "type": "github" } }, - "crane_9": { + "crane_45": { "inputs": { - "nixpkgs": "nixpkgs_9" + "nixpkgs": "nixpkgs_47" }, "locked": { - "lastModified": 1708560786, - "narHash": "sha256-gcTA/iq9mfrwGPQsoxVryWhCAgBwL2GJLGO/s06/0wY=", + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", "owner": "ipetkov", "repo": "crane", - "rev": "9a5972e2e8d0b1716cc4e42af8b75eca6914fbff", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", "type": "github" }, "original": { @@ -1477,153 +1900,464 @@ "type": "github" } }, - "crate2nix": { - "flake": false, + "crane_46": { + "inputs": { + "nixpkgs": "nixpkgs_48" + }, "locked": { - "lastModified": 1706909251, - "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", - "owner": "kolloch", - "repo": "crate2nix", - "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "lastModified": 1709610799, + "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", + "owner": "ipetkov", + "repo": "crane", + "rev": "81c393c776d5379c030607866afef6406ca1be57", "type": "github" }, "original": { - "owner": "kolloch", - "repo": "crate2nix", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "crate2nix_10": { - "flake": false, + "crane_47": { + "inputs": { + "nixpkgs": "nixpkgs_49" + }, "locked": { - "lastModified": 1706909251, - "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", - "owner": "kolloch", - "repo": "crate2nix", - "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "lastModified": 1709610799, + "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", + "owner": "ipetkov", + "repo": "crane", + "rev": "81c393c776d5379c030607866afef6406ca1be57", "type": "github" }, "original": { - "owner": "kolloch", - "repo": "crate2nix", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "crate2nix_11": { - "flake": false, + "crane_48": { + "inputs": { + "nixpkgs": "nixpkgs_50" + }, "locked": { - "lastModified": 1706909251, - "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", - "owner": "kolloch", - "repo": "crate2nix", - "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "lastModified": 1709610799, + "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", + "owner": "ipetkov", + "repo": "crane", + "rev": "81c393c776d5379c030607866afef6406ca1be57", "type": "github" }, "original": { - "owner": "kolloch", - "repo": "crate2nix", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "crate2nix_12": { - "flake": false, + "crane_49": { + "inputs": { + "nixpkgs": "nixpkgs_51" + }, "locked": { - "lastModified": 1706909251, - "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", - "owner": "kolloch", - "repo": "crate2nix", - "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "lastModified": 1708560786, + "narHash": "sha256-gcTA/iq9mfrwGPQsoxVryWhCAgBwL2GJLGO/s06/0wY=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9a5972e2e8d0b1716cc4e42af8b75eca6914fbff", "type": "github" }, "original": { - "owner": "kolloch", - "repo": "crate2nix", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "crate2nix_13": { - "flake": false, + "crane_5": { + "inputs": { + "nixpkgs": "nixpkgs_5" + }, "locked": { - "lastModified": 1706909251, - "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", - "owner": "kolloch", - "repo": "crate2nix", - "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", + "owner": "ipetkov", + "repo": "crane", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", "type": "github" }, "original": { - "owner": "kolloch", - "repo": "crate2nix", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "crate2nix_14": { - "flake": false, + "crane_50": { + "inputs": { + "nixpkgs": "nixpkgs_52" + }, "locked": { - "lastModified": 1706909251, - "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", - "owner": "kolloch", - "repo": "crate2nix", - "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "lastModified": 1708560786, + "narHash": "sha256-gcTA/iq9mfrwGPQsoxVryWhCAgBwL2GJLGO/s06/0wY=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9a5972e2e8d0b1716cc4e42af8b75eca6914fbff", "type": "github" }, "original": { - "owner": "kolloch", - "repo": "crate2nix", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "crate2nix_15": { - "flake": false, + "crane_51": { + "inputs": { + "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1706909251, - "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", - "owner": "kolloch", - "repo": "crate2nix", - "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", "type": "github" }, "original": { - "owner": "kolloch", - "repo": "crate2nix", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "crate2nix_16": { - "flake": false, + "crane_52": { + "inputs": { + "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1706909251, - "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", - "owner": "kolloch", - "repo": "crate2nix", - "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", "type": "github" }, "original": { - "owner": "kolloch", - "repo": "crate2nix", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "crate2nix_17": { - "flake": false, + "crane_53": { + "inputs": { + "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1706909251, - "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", - "owner": "kolloch", - "repo": "crate2nix", - "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", "type": "github" }, "original": { - "owner": "kolloch", - "repo": "crate2nix", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "crate2nix_18": { - "flake": false, - "locked": { + "crane_54": { + "inputs": { + "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_55": { + "inputs": { + "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_56": { + "inputs": { + "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_57": { + "inputs": { + "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_58": { + "inputs": { + "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_59": { + "inputs": { + "nixpkgs": [ + "service", + "module", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_6": { + "inputs": { + "nixpkgs": "nixpkgs_6" + }, + "locked": { + "lastModified": 1709610799, + "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", + "owner": "ipetkov", + "repo": "crane", + "rev": "81c393c776d5379c030607866afef6406ca1be57", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_60": { + "inputs": { + "nixpkgs": [ + "service", + "module", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_7": { + "inputs": { + "nixpkgs": "nixpkgs_7" + }, + "locked": { + "lastModified": 1709610799, + "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", + "owner": "ipetkov", + "repo": "crane", + "rev": "81c393c776d5379c030607866afef6406ca1be57", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_8": { + "inputs": { + "nixpkgs": "nixpkgs_8" + }, + "locked": { + "lastModified": 1709610799, + "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", + "owner": "ipetkov", + "repo": "crane", + "rev": "81c393c776d5379c030607866afef6406ca1be57", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_9": { + "inputs": { + "nixpkgs": "nixpkgs_9" + }, + "locked": { + "lastModified": 1708560786, + "narHash": "sha256-gcTA/iq9mfrwGPQsoxVryWhCAgBwL2GJLGO/s06/0wY=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9a5972e2e8d0b1716cc4e42af8b75eca6914fbff", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crate2nix": { + "flake": false, + "locked": { "lastModified": 1706909251, "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", "owner": "kolloch", @@ -1637,7 +2371,7 @@ "type": "github" } }, - "crate2nix_19": { + "crate2nix_10": { "flake": false, "locked": { "lastModified": 1706909251, @@ -1653,7 +2387,7 @@ "type": "github" } }, - "crate2nix_2": { + "crate2nix_11": { "flake": false, "locked": { "lastModified": 1706909251, @@ -1669,7 +2403,7 @@ "type": "github" } }, - "crate2nix_3": { + "crate2nix_12": { "flake": false, "locked": { "lastModified": 1706909251, @@ -1685,7 +2419,7 @@ "type": "github" } }, - "crate2nix_4": { + "crate2nix_13": { "flake": false, "locked": { "lastModified": 1706909251, @@ -1701,7 +2435,7 @@ "type": "github" } }, - "crate2nix_5": { + "crate2nix_14": { "flake": false, "locked": { "lastModified": 1706909251, @@ -1717,7 +2451,7 @@ "type": "github" } }, - "crate2nix_6": { + "crate2nix_15": { "flake": false, "locked": { "lastModified": 1706909251, @@ -1733,7 +2467,7 @@ "type": "github" } }, - "crate2nix_7": { + "crate2nix_16": { "flake": false, "locked": { "lastModified": 1706909251, @@ -1749,7 +2483,7 @@ "type": "github" } }, - "crate2nix_8": { + "crate2nix_17": { "flake": false, "locked": { "lastModified": 1706909251, @@ -1765,7 +2499,7 @@ "type": "github" } }, - "crate2nix_9": { + "crate2nix_18": { "flake": false, "locked": { "lastModified": 1706909251, @@ -1781,279 +2515,327 @@ "type": "github" } }, - "empty": { + "crate2nix_19": { "flake": false, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "empty_10": { + "crate2nix_2": { "flake": false, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "empty_11": { + "crate2nix_20": { "flake": false, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "empty_12": { + "crate2nix_21": { "flake": false, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "empty_13": { + "crate2nix_22": { "flake": false, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "empty_14": { + "crate2nix_23": { "flake": false, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "empty_15": { + "crate2nix_24": { "flake": false, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "empty_16": { + "crate2nix_25": { "flake": false, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "empty_17": { + "crate2nix_26": { "flake": false, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "empty_18": { + "crate2nix_27": { "flake": false, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "empty_19": { + "crate2nix_28": { "flake": false, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "empty_2": { + "crate2nix_29": { "flake": false, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "empty_3": { + "crate2nix_3": { "flake": false, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "empty_4": { + "crate2nix_30": { "flake": false, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "empty_5": { + "crate2nix_4": { "flake": false, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "empty_6": { + "crate2nix_5": { "flake": false, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "empty_7": { + "crate2nix_6": { "flake": false, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "empty_8": { + "crate2nix_7": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "crate2nix_8": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "crate2nix_9": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, + "empty": { "flake": false, "locked": { "lastModified": 1683792623, @@ -2069,7 +2851,7 @@ "type": "github" } }, - "empty_9": { + "empty_10": { "flake": false, "locked": { "lastModified": 1683792623, @@ -2085,4502 +2867,9175 @@ "type": "github" } }, - "flake-compat": { + "empty_11": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-compat_10": { + "empty_12": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-compat_11": { + "empty_13": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-compat_12": { + "empty_14": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-compat_13": { + "empty_15": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-compat_14": { + "empty_16": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-compat_15": { + "empty_17": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-compat_16": { + "empty_18": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-compat_17": { + "empty_19": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-compat_18": { + "empty_2": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-compat_19": { + "empty_20": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-compat_2": { + "empty_21": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-compat_3": { + "empty_22": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-compat_4": { + "empty_23": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-compat_5": { + "empty_24": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-compat_6": { + "empty_25": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-compat_7": { + "empty_26": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-compat_8": { + "empty_27": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-compat_9": { + "empty_28": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-parts": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib" - }, + "empty_29": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "steveej", + "repo": "empty", + "type": "github" } }, - "flake-parts_10": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_10" - }, + "empty_3": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "steveej", + "repo": "empty", + "type": "github" } }, - "flake-parts_11": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_11" - }, + "empty_30": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "steveej", + "repo": "empty", + "type": "github" } }, - "flake-parts_12": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_12" - }, + "empty_4": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "steveej", + "repo": "empty", + "type": "github" } }, - "flake-parts_13": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_13" - }, + "empty_5": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "steveej", + "repo": "empty", + "type": "github" } }, - "flake-parts_14": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_14" - }, + "empty_6": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "steveej", + "repo": "empty", + "type": "github" } }, - "flake-parts_15": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_15" - }, + "empty_7": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "steveej", + "repo": "empty", + "type": "github" } }, - "flake-parts_16": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_16" - }, + "empty_8": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "steveej", + "repo": "empty", + "type": "github" } }, - "flake-parts_17": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_17" - }, + "empty_9": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "steveej", + "repo": "empty", + "type": "github" } }, - "flake-parts_18": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_18" - }, + "flake-compat": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" } }, - "flake-parts_19": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_19" - }, + "flake-compat_10": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" } }, - "flake-parts_2": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_2" - }, + "flake-compat_11": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" } }, - "flake-parts_3": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_3" - }, + "flake-compat_12": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" } }, - "flake-parts_4": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_4" - }, + "flake-compat_13": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" } }, - "flake-parts_5": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_5" - }, + "flake-compat_14": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" } }, - "flake-parts_6": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_6" - }, + "flake-compat_15": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" } }, - "flake-parts_7": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_7" - }, + "flake-compat_16": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" } }, - "flake-parts_8": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_8" - }, + "flake-compat_17": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" } }, - "flake-parts_9": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_9" - }, + "flake-compat_18": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" } }, - "flake-utils": { - "inputs": { - "systems": "systems" - }, + "flake-compat_19": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_10": { - "inputs": { - "systems": "systems_10" - }, + "flake-compat_2": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_11": { - "inputs": { - "systems": "systems_11" - }, + "flake-compat_20": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_12": { - "inputs": { - "systems": "systems_12" - }, + "flake-compat_21": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_13": { - "inputs": { - "systems": "systems_13" - }, + "flake-compat_22": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_14": { - "inputs": { - "systems": "systems_14" - }, + "flake-compat_23": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_15": { - "inputs": { - "systems": "systems_15" - }, + "flake-compat_24": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_16": { - "inputs": { - "systems": "systems_16" - }, + "flake-compat_25": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_17": { - "inputs": { - "systems": "systems_17" - }, + "flake-compat_26": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_18": { - "inputs": { - "systems": "systems_18" - }, + "flake-compat_27": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_19": { - "inputs": { - "systems": "systems_19" - }, + "flake-compat_28": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_2": { - "inputs": { - "systems": "systems_2" - }, + "flake-compat_29": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_20": { - "inputs": { - "systems": "systems_20" - }, + "flake-compat_3": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_21": { - "inputs": { - "systems": "systems_21" - }, + "flake-compat_30": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_22": { - "inputs": { - "systems": "systems_22" - }, + "flake-compat_4": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_23": { - "inputs": { - "systems": "systems_23" - }, + "flake-compat_5": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_24": { - "inputs": { - "systems": "systems_24" - }, + "flake-compat_6": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_25": { - "inputs": { - "systems": "systems_25" - }, + "flake-compat_7": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_26": { - "inputs": { - "systems": "systems_26" - }, + "flake-compat_8": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_27": { - "inputs": { - "systems": "systems_27" - }, + "flake-compat_9": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_28": { + "flake-parts": { "inputs": { - "systems": "systems_28" + "nixpkgs-lib": "nixpkgs-lib" }, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "flake-utils_29": { + "flake-parts_10": { "inputs": { - "systems": "systems_29" + "nixpkgs-lib": "nixpkgs-lib_10" }, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "flake-utils_3": { + "flake-parts_11": { "inputs": { - "systems": "systems_3" + "nixpkgs-lib": "nixpkgs-lib_11" }, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "flake-utils_30": { + "flake-parts_12": { "inputs": { - "systems": "systems_30" + "nixpkgs-lib": "nixpkgs-lib_12" }, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "flake-utils_31": { + "flake-parts_13": { "inputs": { - "systems": "systems_31" + "nixpkgs-lib": "nixpkgs-lib_13" }, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "flake-utils_32": { + "flake-parts_14": { "inputs": { - "systems": "systems_32" + "nixpkgs-lib": "nixpkgs-lib_14" }, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "flake-utils_33": { + "flake-parts_15": { "inputs": { - "systems": "systems_33" + "nixpkgs-lib": "nixpkgs-lib_15" }, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "flake-utils_34": { + "flake-parts_16": { "inputs": { - "systems": "systems_34" + "nixpkgs-lib": "nixpkgs-lib_16" }, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" } }, - "flake-utils_35": { + "flake-parts_17": { "inputs": { - "systems": "systems_35" + "nixpkgs-lib": "nixpkgs-lib_17" }, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "flake-utils_36": { + "flake-parts_18": { "inputs": { - "systems": "systems_36" + "nixpkgs-lib": "nixpkgs-lib_18" }, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "flake-utils_37": { + "flake-parts_19": { "inputs": { - "systems": "systems_37" + "nixpkgs-lib": "nixpkgs-lib_19" }, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "flake-utils_38": { + "flake-parts_2": { "inputs": { - "systems": "systems_38" + "nixpkgs-lib": "nixpkgs-lib_2" }, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "flake-utils_4": { + "flake-parts_20": { "inputs": { - "systems": "systems_4" + "nixpkgs-lib": "nixpkgs-lib_20" }, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "flake-utils_5": { + "flake-parts_21": { "inputs": { - "systems": "systems_5" + "nixpkgs-lib": "nixpkgs-lib_21" }, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "flake-utils_6": { + "flake-parts_22": { "inputs": { - "systems": "systems_6" + "nixpkgs-lib": "nixpkgs-lib_22" }, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "flake-utils_7": { + "flake-parts_23": { "inputs": { - "systems": "systems_7" + "nixpkgs-lib": "nixpkgs-lib_23" }, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "flake-utils_8": { + "flake-parts_24": { "inputs": { - "systems": "systems_8" + "nixpkgs-lib": "nixpkgs-lib_24" }, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "flake-utils_9": { + "flake-parts_25": { "inputs": { - "systems": "systems_9" + "nixpkgs-lib": "nixpkgs-lib_25" }, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "hcUtils": { + "flake-parts_26": { "inputs": { - "crane": "crane", - "hcUtils": "hcUtils_2", - "holochain": "holochain_17", - "nixpkgs": [ - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_19", - "versions": "versions_9" + "nixpkgs-lib": "nixpkgs-lib_26" }, "locked": { - "lastModified": 0, - "narHash": "sha256-qeSCyVa1a2gd2rzz2aUvnnc8V4wyPZnB1q+0aSYJH+w=", - "path": "../..", - "type": "path" + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" }, "original": { - "path": "../..", - "type": "path" + "id": "flake-parts", + "type": "indirect" } }, - "hcUtils_10": { + "flake-parts_27": { "inputs": { - "crane": "crane_10", - "nixpkgs": "nixpkgs_11", - "rust-overlay": "rust-overlay" + "nixpkgs-lib": "nixpkgs-lib_27" }, "locked": { - "lastModified": 1708609246, - "narHash": "sha256-8C5Nf84Sw3vutYxACA+N1Mc+QC06SddHzA1mjls/v8w=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "e7e9cfca683aaa78dfa7959bff7b1af91aa6651b", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "hcUtils_11": { + "flake-parts_28": { "inputs": { - "crane": "crane_21", - "hcUtils": "hcUtils_12", - "holochain": "holochain_34", - "nixpkgs": [ - "profiles", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_37", - "versions": "versions_17" + "nixpkgs-lib": "nixpkgs-lib_28" }, "locked": { - "lastModified": 1710262818, - "narHash": "sha256-m/jLq+c1ciOlTjLBduZiJWgtesgr0dqiLYYHsuxGyG4=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "cf83886557946ac983e47300048f5b31c0667db1", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "hcUtils_12": { + "flake-parts_29": { "inputs": { - "crane": "crane_22", - "hcUtils": "hcUtils_13", - "holochain": "holochain_32", - "nixpkgs": [ - "profiles", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_35", - "versions": "versions_16" + "nixpkgs-lib": "nixpkgs-lib_29" }, "locked": { - "lastModified": 1710259503, - "narHash": "sha256-GKjKaY3L1WCWLx6zHcR6EvR2JKCABpIbrGnuZcbEEPk=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "7503e467f55425cfa802f33cafcb53d6011417b7", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "hcUtils_13": { + "flake-parts_3": { "inputs": { - "crane": "crane_23", - "hcUtils": "hcUtils_14", - "holochain": "holochain_30", - "nixpkgs": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_33", - "versions": "versions_15" + "nixpkgs-lib": "nixpkgs-lib_3" }, "locked": { - "lastModified": 1710259052, - "narHash": "sha256-L5u7wJDtKR/DfaS0tqUJymEimkwzTItmgkRug/q+qM4=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "1c569cb148d3cc33c18e55aca5e99032166d8bb0", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "hcUtils_14": { + "flake-parts_30": { "inputs": { - "crane": "crane_24", - "hcUtils": "hcUtils_15", - "holochain": "holochain_28", - "nixpkgs": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_31", - "versions": "versions_14" + "nixpkgs-lib": "nixpkgs-lib_30" }, "locked": { - "lastModified": 1710170526, - "narHash": "sha256-8SMfoPrMF0nXBmN+k9Ckxy/1VFB7GWMX+ZWPQUl/ylM=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "8ae6c8817918006f25f0e38c0351809e23328df8", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "hcUtils_15": { + "flake-parts_4": { "inputs": { - "crane": "crane_25", - "hcUtils": "hcUtils_16", - "holochain": "holochain_26", - "nixpkgs": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_29", - "versions": "versions_13" + "nixpkgs-lib": "nixpkgs-lib_4" }, "locked": { - "lastModified": 1709938899, - "narHash": "sha256-1cojwgfN0Ey5eRyrlD5DktbraaFGK0LNv8LyZuQhBlc=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "528c55a03bec665e4f44e8b45f4b9d03ea9d9471", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "hcUtils_16": { + "flake-parts_5": { "inputs": { - "crane": "crane_26", - "hcUtils": "hcUtils_17", - "holochain": "holochain_24", - "nixpkgs": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_27", - "versions": "versions_12" + "nixpkgs-lib": "nixpkgs-lib_5" }, "locked": { - "lastModified": 1709847264, - "narHash": "sha256-209E9O8Ck/2fHMkjLVQ7/RlDfQtHJRh/vP+B8jFDQHE=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "5b8365d3a970df9038a4518dee76c0e40a5de813", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "hcUtils_17": { + "flake-parts_6": { "inputs": { - "crane": "crane_27", - "hcUtils": "hcUtils_18", - "holochain": "holochain_22", - "nixpkgs": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_25", - "versions": "versions_11" + "nixpkgs-lib": "nixpkgs-lib_6" }, "locked": { - "lastModified": 1709743154, - "narHash": "sha256-M16V2rHCdfTW9aot1XeMxWpmIs0axH2FbFpmsbBY5ZY=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "282b7ab81a5755e8c41982766caecb6663c63c2d", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "hcUtils_18": { + "flake-parts_7": { "inputs": { - "crane": "crane_28", - "hcUtils": "hcUtils_19", - "holochain": "holochain_20", - "nixpkgs": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_23", - "versions": "versions_10" + "nixpkgs-lib": "nixpkgs-lib_7" }, "locked": { - "lastModified": 1709649392, - "narHash": "sha256-X3ijMZFXDu2V2Wko1jFO8oovqbilGUj5U77WNiP+jvE=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "546c3c654904e1bd859dea39960475fef4c7924b", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "hcUtils_19": { + "flake-parts_8": { "inputs": { - "crane": "crane_29", - "nixpkgs": "nixpkgs_31", - "rust-overlay": "rust-overlay_21" + "nixpkgs-lib": "nixpkgs-lib_8" }, "locked": { - "lastModified": 1708609246, - "narHash": "sha256-8C5Nf84Sw3vutYxACA+N1Mc+QC06SddHzA1mjls/v8w=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "e7e9cfca683aaa78dfa7959bff7b1af91aa6651b", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "hcUtils_2": { + "flake-parts_9": { "inputs": { - "crane": "crane_2", - "hcUtils": "hcUtils_3", - "holochain": "holochain_15", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_17", - "versions": "versions_8" + "nixpkgs-lib": "nixpkgs-lib_9" }, "locked": { - "lastModified": 1710328673, - "narHash": "sha256-qA1IzSbEsgd+QLOegEK8I6Frk1ryX/iFB1vXw/NYRvs=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "c80094cb97c3a01e31e59773b6b2e53990191460", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "hcUtils_3": { + "flake-utils_10": { "inputs": { - "crane": "crane_3", - "hcUtils": "hcUtils_4", - "holochain": "holochain_13", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_15", - "versions": "versions_7" + "systems": "systems_10" }, "locked": { - "lastModified": 1710259503, - "narHash": "sha256-GKjKaY3L1WCWLx6zHcR6EvR2JKCABpIbrGnuZcbEEPk=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "7503e467f55425cfa802f33cafcb53d6011417b7", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "hcUtils_4": { + "flake-utils_11": { "inputs": { - "crane": "crane_4", - "hcUtils": "hcUtils_5", - "holochain": "holochain_11", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_13", - "versions": "versions_6" + "systems": "systems_11" }, "locked": { - "lastModified": 1710259052, - "narHash": "sha256-L5u7wJDtKR/DfaS0tqUJymEimkwzTItmgkRug/q+qM4=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "1c569cb148d3cc33c18e55aca5e99032166d8bb0", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "hcUtils_5": { + "flake-utils_12": { "inputs": { - "crane": "crane_5", - "hcUtils": "hcUtils_6", - "holochain": "holochain_9", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_11", - "versions": "versions_5" + "systems": "systems_12" }, "locked": { - "lastModified": 1710170526, - "narHash": "sha256-8SMfoPrMF0nXBmN+k9Ckxy/1VFB7GWMX+ZWPQUl/ylM=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "8ae6c8817918006f25f0e38c0351809e23328df8", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "hcUtils_6": { + "flake-utils_13": { "inputs": { - "crane": "crane_6", - "hcUtils": "hcUtils_7", - "holochain": "holochain_7", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_9", - "versions": "versions_4" + "systems": "systems_13" }, "locked": { - "lastModified": 1709938899, - "narHash": "sha256-1cojwgfN0Ey5eRyrlD5DktbraaFGK0LNv8LyZuQhBlc=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "528c55a03bec665e4f44e8b45f4b9d03ea9d9471", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "hcUtils_7": { + "flake-utils_14": { "inputs": { - "crane": "crane_7", - "hcUtils": "hcUtils_8", - "holochain": "holochain_5", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_7", - "versions": "versions_3" + "systems": "systems_14" }, "locked": { - "lastModified": 1709847264, - "narHash": "sha256-209E9O8Ck/2fHMkjLVQ7/RlDfQtHJRh/vP+B8jFDQHE=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "5b8365d3a970df9038a4518dee76c0e40a5de813", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "hcUtils_8": { + "flake-utils_15": { "inputs": { - "crane": "crane_8", - "hcUtils": "hcUtils_9", - "holochain": "holochain_3", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_5", - "versions": "versions_2" + "systems": "systems_15" }, "locked": { - "lastModified": 1709743154, - "narHash": "sha256-M16V2rHCdfTW9aot1XeMxWpmIs0axH2FbFpmsbBY5ZY=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "282b7ab81a5755e8c41982766caecb6663c63c2d", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "hcUtils_9": { + "flake-utils_16": { "inputs": { - "crane": "crane_9", - "hcUtils": "hcUtils_10", - "holochain": "holochain", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_3", - "versions": "versions" + "systems": "systems_16" }, "locked": { - "lastModified": 1709649392, - "narHash": "sha256-X3ijMZFXDu2V2Wko1jFO8oovqbilGUj5U77WNiP+jvE=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "546c3c654904e1bd859dea39960475fef4c7924b", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain": { + "flake-utils_17": { "inputs": { - "cargo-chef": "cargo-chef", - "cargo-rdme": "cargo-rdme", - "crane": "crane_11", - "crate2nix": "crate2nix", - "empty": "empty", - "flake-compat": "flake-compat", - "flake-parts": "flake-parts", - "holochain": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter", - "nixpkgs": "nixpkgs_12", - "pre-commit-hooks-nix": "pre-commit-hooks-nix", - "repo-git": "repo-git", - "rust-overlay": "rust-overlay_2", - "scaffolding": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "versions" - ] + "systems": "systems_17" }, "locked": { - "lastModified": 1708595708, - "narHash": "sha256-coOhtMii+epTQobSAj1qGfVYbN9Rs0oB+Rj6ZePqKIU=", - "owner": "holochain", - "repo": "holochain", - "rev": "e2fd7138bfeb1185a245421eefb2f83d237eccef", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_10": { - "flake": false, + "flake-utils_18": { + "inputs": { + "systems": "systems_18" + }, "locked": { - "lastModified": 1709687030, - "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", - "owner": "holochain", - "repo": "holochain", - "rev": "cb671524080332983281baa2db7c1851344e79d2", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.39", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_11": { + "flake-utils_19": { "inputs": { - "cargo-chef": "cargo-chef_6", - "cargo-rdme": "cargo-rdme_6", - "crane": "crane_16", - "crate2nix": "crate2nix_6", - "empty": "empty_6", - "flake-compat": "flake-compat_6", - "flake-parts": "flake-parts_6", - "holochain": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_6", - "nixpkgs": "nixpkgs_17", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_6", - "repo-git": "repo-git_6", - "rust-overlay": "rust-overlay_12", - "scaffolding": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "versions" - ] + "systems": "systems_19" }, "locked": { - "lastModified": 1710225101, - "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", - "owner": "holochain", - "repo": "holochain", - "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_12": { - "flake": false, + "flake-utils_2": { + "inputs": { + "systems": "systems_2" + }, "locked": { - "lastModified": 1709687030, - "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", - "owner": "holochain", - "repo": "holochain", - "rev": "cb671524080332983281baa2db7c1851344e79d2", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.39", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_13": { + "flake-utils_20": { "inputs": { - "cargo-chef": "cargo-chef_7", - "cargo-rdme": "cargo-rdme_7", - "crane": "crane_17", - "crate2nix": "crate2nix_7", - "empty": "empty_7", - "flake-compat": "flake-compat_7", - "flake-parts": "flake-parts_7", - "holochain": [ - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_7", - "nixpkgs": "nixpkgs_18", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_7", - "repo-git": "repo-git_7", - "rust-overlay": "rust-overlay_14", - "scaffolding": [ - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "hcUtils", - "hcUtils", - "hcUtils", - "versions" - ] + "systems": "systems_20" }, "locked": { - "lastModified": 1710225101, - "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", - "owner": "holochain", - "repo": "holochain", - "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", - "type": "github" - }, - "original": { - "owner": "holochain", - "repo": "holochain", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_14": { - "flake": false, + "flake-utils_21": { + "inputs": { + "systems": "systems_21" + }, "locked": { - "lastModified": 1709687030, - "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", - "owner": "holochain", - "repo": "holochain", - "rev": "cb671524080332983281baa2db7c1851344e79d2", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.39", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_15": { + "flake-utils_22": { "inputs": { - "cargo-chef": "cargo-chef_8", - "cargo-rdme": "cargo-rdme_8", - "crane": "crane_18", - "crate2nix": "crate2nix_8", - "empty": "empty_8", - "flake-compat": "flake-compat_8", - "flake-parts": "flake-parts_8", - "holochain": [ - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_8", - "nixpkgs": "nixpkgs_19", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_8", - "repo-git": "repo-git_8", - "rust-overlay": "rust-overlay_16", - "scaffolding": [ - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "hcUtils", - "hcUtils", - "versions" - ] + "systems": "systems_22" }, "locked": { - "lastModified": 1710225101, - "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", - "owner": "holochain", - "repo": "holochain", - "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_16": { - "flake": false, + "flake-utils_23": { + "inputs": { + "systems": "systems_23" + }, "locked": { - "lastModified": 1709687030, - "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", - "owner": "holochain", - "repo": "holochain", - "rev": "cb671524080332983281baa2db7c1851344e79d2", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.39", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_17": { + "flake-utils_24": { "inputs": { - "cargo-chef": "cargo-chef_9", - "cargo-rdme": "cargo-rdme_9", - "crane": "crane_19", - "crate2nix": "crate2nix_9", - "empty": "empty_9", - "flake-compat": "flake-compat_9", - "flake-parts": "flake-parts_9", - "holochain": [ - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_9", - "nixpkgs": "nixpkgs_20", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_9", - "repo-git": "repo-git_9", - "rust-overlay": "rust-overlay_18", - "scaffolding": [ - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "hcUtils", - "versions" - ] + "systems": "systems_24" }, "locked": { - "lastModified": 1710333296, - "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", - "owner": "holochain", - "repo": "holochain", - "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_18": { - "flake": false, + "flake-utils_25": { + "inputs": { + "systems": "systems_25" + }, "locked": { - "lastModified": 1709687030, - "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", - "owner": "holochain", - "repo": "holochain", - "rev": "cb671524080332983281baa2db7c1851344e79d2", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.39", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_19": { + "flake-utils_26": { "inputs": { - "cargo-chef": "cargo-chef_10", - "cargo-rdme": "cargo-rdme_10", - "crane": "crane_20", - "crate2nix": "crate2nix_10", - "empty": "empty_10", - "flake-compat": "flake-compat_10", - "flake-parts": "flake-parts_10", - "holochain": [ - "holochain", - "empty" - ], - "lair": [ - "holochain", - "empty" - ], - "launcher": [ - "holochain", - "empty" - ], - "nix-filter": "nix-filter_10", - "nixpkgs": "nixpkgs_21", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_10", - "repo-git": "repo-git_10", - "rust-overlay": "rust-overlay_20", - "scaffolding": [ - "holochain", - "empty" - ], - "versions": [ - "versions" - ] + "systems": "systems_26" }, "locked": { - "lastModified": 1710333296, - "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", - "owner": "holochain", - "repo": "holochain", - "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_2": { - "flake": false, + "flake-utils_27": { + "inputs": { + "systems": "systems_27" + }, "locked": { - "lastModified": 1707871925, - "narHash": "sha256-LmDAQT21zXXgDl/68ERyCerAWCym7aKECnXsnyLcmXw=", - "owner": "holochain", - "repo": "holochain", - "rev": "2f3c8dce79586aad6f67d3428bf56d868303f956", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.37", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_20": { + "flake-utils_28": { "inputs": { - "cargo-chef": "cargo-chef_11", - "cargo-rdme": "cargo-rdme_11", - "crane": "crane_30", - "crate2nix": "crate2nix_11", - "empty": "empty_11", - "flake-compat": "flake-compat_11", - "flake-parts": "flake-parts_11", - "holochain": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_11", - "nixpkgs": "nixpkgs_32", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_11", - "repo-git": "repo-git_11", - "rust-overlay": "rust-overlay_22", - "scaffolding": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "versions" - ] + "systems": "systems_28" }, "locked": { - "lastModified": 1708595708, - "narHash": "sha256-coOhtMii+epTQobSAj1qGfVYbN9Rs0oB+Rj6ZePqKIU=", - "owner": "holochain", - "repo": "holochain", - "rev": "e2fd7138bfeb1185a245421eefb2f83d237eccef", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_21": { - "flake": false, + "flake-utils_29": { + "inputs": { + "systems": "systems_29" + }, "locked": { - "lastModified": 1707871925, - "narHash": "sha256-LmDAQT21zXXgDl/68ERyCerAWCym7aKECnXsnyLcmXw=", - "owner": "holochain", - "repo": "holochain", - "rev": "2f3c8dce79586aad6f67d3428bf56d868303f956", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.37", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_22": { + "flake-utils_3": { "inputs": { - "cargo-chef": "cargo-chef_12", - "cargo-rdme": "cargo-rdme_12", - "crane": "crane_31", - "crate2nix": "crate2nix_12", - "empty": "empty_12", - "flake-compat": "flake-compat_12", - "flake-parts": "flake-parts_12", - "holochain": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_12", - "nixpkgs": "nixpkgs_33", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_12", - "repo-git": "repo-git_12", - "rust-overlay": "rust-overlay_24", - "scaffolding": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "versions" - ] + "systems": "systems_3" }, "locked": { - "lastModified": 1709620314, - "narHash": "sha256-d7vekpj538VqdDrChFbVQpSVGDMnU1nSksbSzacKvyM=", - "owner": "holochain", - "repo": "holochain", - "rev": "392bdfd729fb6ce50f78f9e7f1c757dc392675f4", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_23": { - "flake": false, + "flake-utils_30": { + "inputs": { + "systems": "systems_30" + }, "locked": { - "lastModified": 1709081329, - "narHash": "sha256-QP7WKySgEFbgNaSc7BNBBOWCVKuycXSp4HAfD4GTug8=", - "owner": "holochain", - "repo": "holochain", - "rev": "547c63a442e61be805887b644c78cf6f970d631b", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.38", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_24": { + "flake-utils_31": { "inputs": { - "cargo-chef": "cargo-chef_13", - "cargo-rdme": "cargo-rdme_13", - "crane": "crane_32", - "crate2nix": "crate2nix_13", - "empty": "empty_13", - "flake-compat": "flake-compat_13", - "flake-parts": "flake-parts_13", - "holochain": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_13", - "nixpkgs": "nixpkgs_34", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_13", - "repo-git": "repo-git_13", - "rust-overlay": "rust-overlay_26", - "scaffolding": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "versions" - ] + "systems": "systems_31" }, "locked": { - "lastModified": 1709731345, - "narHash": "sha256-YNMiQJRbnBdTQ/Q26M5zp+j2DGtpmaI/VWPVJxc4G7k=", - "owner": "holochain", - "repo": "holochain", - "rev": "3c3d2d73819e97cb9f5487d853f75a9954850f1e", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_25": { - "flake": false, + "flake-utils_32": { + "inputs": { + "systems": "systems_32" + }, "locked": { - "lastModified": 1709081329, - "narHash": "sha256-QP7WKySgEFbgNaSc7BNBBOWCVKuycXSp4HAfD4GTug8=", - "owner": "holochain", - "repo": "holochain", - "rev": "547c63a442e61be805887b644c78cf6f970d631b", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.38", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_26": { + "flake-utils_33": { "inputs": { - "cargo-chef": "cargo-chef_14", - "cargo-rdme": "cargo-rdme_14", - "crane": "crane_33", - "crate2nix": "crate2nix_14", - "empty": "empty_14", - "flake-compat": "flake-compat_14", - "flake-parts": "flake-parts_14", - "holochain": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_14", - "nixpkgs": "nixpkgs_35", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_14", - "repo-git": "repo-git_14", - "rust-overlay": "rust-overlay_28", - "scaffolding": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "versions" - ] + "systems": "systems_33" }, "locked": { - "lastModified": 1709879507, - "narHash": "sha256-62ksNmQzgtsOlA6OFsdmVwUd6Me8g114DO9U4G23Ovk=", - "owner": "holochain", - "repo": "holochain", - "rev": "ef5d8cb9f6b57e208dff52ea173f13a1aaf46cce", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_27": { - "flake": false, + "flake-utils_34": { + "inputs": { + "systems": "systems_34" + }, "locked": { - "lastModified": 1709687030, - "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", - "owner": "holochain", - "repo": "holochain", - "rev": "cb671524080332983281baa2db7c1851344e79d2", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.39", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_28": { + "flake-utils_35": { "inputs": { - "cargo-chef": "cargo-chef_15", - "cargo-rdme": "cargo-rdme_15", - "crane": "crane_34", - "crate2nix": "crate2nix_15", - "empty": "empty_15", - "flake-compat": "flake-compat_15", - "flake-parts": "flake-parts_15", - "holochain": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_15", - "nixpkgs": "nixpkgs_36", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_15", - "repo-git": "repo-git_15", - "rust-overlay": "rust-overlay_30", - "scaffolding": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "versions" - ] + "systems": "systems_35" }, "locked": { - "lastModified": 1710138828, - "narHash": "sha256-MyZxoUdRrjIaiywthLfaBh2nUuvmgl8HSikKOoj9rxs=", - "owner": "holochain", - "repo": "holochain", - "rev": "5fdb77016be1925ec89cde1fffa0e9c80f9bbd92", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_29": { - "flake": false, + "flake-utils_36": { + "inputs": { + "systems": "systems_36" + }, "locked": { - "lastModified": 1709687030, - "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", - "owner": "holochain", - "repo": "holochain", - "rev": "cb671524080332983281baa2db7c1851344e79d2", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.39", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_3": { + "flake-utils_37": { "inputs": { - "cargo-chef": "cargo-chef_2", - "cargo-rdme": "cargo-rdme_2", - "crane": "crane_12", - "crate2nix": "crate2nix_2", - "empty": "empty_2", - "flake-compat": "flake-compat_2", - "flake-parts": "flake-parts_2", - "holochain": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_2", - "nixpkgs": "nixpkgs_13", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_2", - "repo-git": "repo-git_2", - "rust-overlay": "rust-overlay_4", - "scaffolding": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "versions" - ] + "systems": "systems_37" }, "locked": { - "lastModified": 1709620314, - "narHash": "sha256-d7vekpj538VqdDrChFbVQpSVGDMnU1nSksbSzacKvyM=", - "owner": "holochain", - "repo": "holochain", - "rev": "392bdfd729fb6ce50f78f9e7f1c757dc392675f4", + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", + "owner": "numtide", + "repo": "flake-utils", "type": "github" } }, - "holochain_30": { + "flake-utils_38": { "inputs": { - "cargo-chef": "cargo-chef_16", - "cargo-rdme": "cargo-rdme_16", - "crane": "crane_35", - "crate2nix": "crate2nix_16", - "empty": "empty_16", - "flake-compat": "flake-compat_16", - "flake-parts": "flake-parts_16", - "holochain": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_16", - "nixpkgs": "nixpkgs_37", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_16", - "repo-git": "repo-git_16", - "rust-overlay": "rust-overlay_32", - "scaffolding": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "versions" - ] + "systems": "systems_38" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_39": { + "inputs": { + "systems": "systems_39" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_4": { + "inputs": { + "systems": "systems_4" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_40": { + "inputs": { + "systems": "systems_40" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_41": { + "inputs": { + "systems": "systems_41" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_42": { + "inputs": { + "systems": "systems_42" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_43": { + "inputs": { + "systems": "systems_43" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_44": { + "inputs": { + "systems": "systems_44" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_45": { + "inputs": { + "systems": "systems_45" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_46": { + "inputs": { + "systems": "systems_46" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_47": { + "inputs": { + "systems": "systems_47" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_48": { + "inputs": { + "systems": "systems_48" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_49": { + "inputs": { + "systems": "systems_49" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_5": { + "inputs": { + "systems": "systems_5" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_50": { + "inputs": { + "systems": "systems_50" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_51": { + "inputs": { + "systems": "systems_51" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_52": { + "inputs": { + "systems": "systems_52" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_53": { + "inputs": { + "systems": "systems_53" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_54": { + "inputs": { + "systems": "systems_54" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_55": { + "inputs": { + "systems": "systems_55" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_56": { + "inputs": { + "systems": "systems_56" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_57": { + "inputs": { + "systems": "systems_57" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_58": { + "inputs": { + "systems": "systems_58" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_59": { + "inputs": { + "systems": "systems_59" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_6": { + "inputs": { + "systems": "systems_6" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_60": { + "inputs": { + "systems": "systems_60" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_7": { + "inputs": { + "systems": "systems_7" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_8": { + "inputs": { + "systems": "systems_8" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_9": { + "inputs": { + "systems": "systems_9" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "hcUtils": { + "inputs": { + "crane": "crane", + "hcUtils": "hcUtils_2", + "holochain": "holochain_17", + "nixpkgs": [ + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_19", + "versions": "versions_9" + }, + "locked": { + "lastModified": 0, + "narHash": "sha256-WeQBN/V6YMyGO8ntDJtmk+YQ++vmFRkJvrJK334jwLA=", + "path": "../../..", + "type": "path" + }, + "original": { + "path": "../../..", + "type": "path" + } + }, + "hcUtils_10": { + "inputs": { + "crane": "crane_10", + "nixpkgs": "nixpkgs_11", + "rust-overlay": "rust-overlay" + }, + "locked": { + "lastModified": 1708609246, + "narHash": "sha256-8C5Nf84Sw3vutYxACA+N1Mc+QC06SddHzA1mjls/v8w=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "e7e9cfca683aaa78dfa7959bff7b1af91aa6651b", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_11": { + "inputs": { + "crane": "crane_21", + "hcUtils": "hcUtils_12", + "holochain": "holochain_36", + "nixpkgs": [ + "service", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_39", + "versions": "versions_18" + }, + "locked": { + "lastModified": 0, + "narHash": "sha256-/g3PLsR2Z1FsCNHp5JAkUPJP2iKWGqX9EwPnOe0Timg=", + "path": "../../..", + "type": "path" + }, + "original": { + "path": "../../..", + "type": "path" + } + }, + "hcUtils_12": { + "inputs": { + "crane": "crane_22", + "hcUtils": "hcUtils_13", + "holochain": "holochain_34", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_37", + "versions": "versions_17" + }, + "locked": { + "lastModified": 1710328673, + "narHash": "sha256-qA1IzSbEsgd+QLOegEK8I6Frk1ryX/iFB1vXw/NYRvs=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "c80094cb97c3a01e31e59773b6b2e53990191460", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_13": { + "inputs": { + "crane": "crane_23", + "hcUtils": "hcUtils_14", + "holochain": "holochain_32", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_35", + "versions": "versions_16" + }, + "locked": { + "lastModified": 1710259503, + "narHash": "sha256-GKjKaY3L1WCWLx6zHcR6EvR2JKCABpIbrGnuZcbEEPk=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "7503e467f55425cfa802f33cafcb53d6011417b7", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_14": { + "inputs": { + "crane": "crane_24", + "hcUtils": "hcUtils_15", + "holochain": "holochain_30", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_33", + "versions": "versions_15" + }, + "locked": { + "lastModified": 1710259052, + "narHash": "sha256-L5u7wJDtKR/DfaS0tqUJymEimkwzTItmgkRug/q+qM4=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "1c569cb148d3cc33c18e55aca5e99032166d8bb0", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_15": { + "inputs": { + "crane": "crane_25", + "hcUtils": "hcUtils_16", + "holochain": "holochain_28", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_31", + "versions": "versions_14" + }, + "locked": { + "lastModified": 1710170526, + "narHash": "sha256-8SMfoPrMF0nXBmN+k9Ckxy/1VFB7GWMX+ZWPQUl/ylM=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "8ae6c8817918006f25f0e38c0351809e23328df8", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_16": { + "inputs": { + "crane": "crane_26", + "hcUtils": "hcUtils_17", + "holochain": "holochain_26", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_29", + "versions": "versions_13" + }, + "locked": { + "lastModified": 1709938899, + "narHash": "sha256-1cojwgfN0Ey5eRyrlD5DktbraaFGK0LNv8LyZuQhBlc=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "528c55a03bec665e4f44e8b45f4b9d03ea9d9471", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_17": { + "inputs": { + "crane": "crane_27", + "hcUtils": "hcUtils_18", + "holochain": "holochain_24", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_27", + "versions": "versions_12" + }, + "locked": { + "lastModified": 1709847264, + "narHash": "sha256-209E9O8Ck/2fHMkjLVQ7/RlDfQtHJRh/vP+B8jFDQHE=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "5b8365d3a970df9038a4518dee76c0e40a5de813", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_18": { + "inputs": { + "crane": "crane_28", + "hcUtils": "hcUtils_19", + "holochain": "holochain_22", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_25", + "versions": "versions_11" + }, + "locked": { + "lastModified": 1709743154, + "narHash": "sha256-M16V2rHCdfTW9aot1XeMxWpmIs0axH2FbFpmsbBY5ZY=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "282b7ab81a5755e8c41982766caecb6663c63c2d", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_19": { + "inputs": { + "crane": "crane_29", + "hcUtils": "hcUtils_20", + "holochain": "holochain_20", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_23", + "versions": "versions_10" + }, + "locked": { + "lastModified": 1709649392, + "narHash": "sha256-X3ijMZFXDu2V2Wko1jFO8oovqbilGUj5U77WNiP+jvE=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "546c3c654904e1bd859dea39960475fef4c7924b", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_2": { + "inputs": { + "crane": "crane_2", + "hcUtils": "hcUtils_3", + "holochain": "holochain_15", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_17", + "versions": "versions_8" + }, + "locked": { + "lastModified": 1710328673, + "narHash": "sha256-qA1IzSbEsgd+QLOegEK8I6Frk1ryX/iFB1vXw/NYRvs=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "c80094cb97c3a01e31e59773b6b2e53990191460", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_20": { + "inputs": { + "crane": "crane_30", + "nixpkgs": "nixpkgs_32", + "rust-overlay": "rust-overlay_21" + }, + "locked": { + "lastModified": 1708609246, + "narHash": "sha256-8C5Nf84Sw3vutYxACA+N1Mc+QC06SddHzA1mjls/v8w=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "e7e9cfca683aaa78dfa7959bff7b1af91aa6651b", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_21": { + "inputs": { + "crane": "crane_41", + "hcUtils": "hcUtils_22", + "holochain": "holochain_55", + "nixpkgs": [ + "service", + "module", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_59", + "versions": "versions_27" + }, + "locked": { + "lastModified": 0, + "narHash": "sha256-g/PRpz82byLnWcBC5nz6IjLCDx0JAZDYjZCqsZ+pb3k=", + "path": "../../..", + "type": "path" + }, + "original": { + "path": "../../..", + "type": "path" + } + }, + "hcUtils_22": { + "inputs": { + "crane": "crane_42", + "hcUtils": "hcUtils_23", + "holochain": "holochain_53", + "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_57", + "versions": "versions_26" + }, + "locked": { + "lastModified": 1710328673, + "narHash": "sha256-qA1IzSbEsgd+QLOegEK8I6Frk1ryX/iFB1vXw/NYRvs=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "c80094cb97c3a01e31e59773b6b2e53990191460", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_23": { + "inputs": { + "crane": "crane_43", + "hcUtils": "hcUtils_24", + "holochain": "holochain_51", + "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_55", + "versions": "versions_25" + }, + "locked": { + "lastModified": 1710259503, + "narHash": "sha256-GKjKaY3L1WCWLx6zHcR6EvR2JKCABpIbrGnuZcbEEPk=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "7503e467f55425cfa802f33cafcb53d6011417b7", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_24": { + "inputs": { + "crane": "crane_44", + "hcUtils": "hcUtils_25", + "holochain": "holochain_49", + "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_53", + "versions": "versions_24" + }, + "locked": { + "lastModified": 1710259052, + "narHash": "sha256-L5u7wJDtKR/DfaS0tqUJymEimkwzTItmgkRug/q+qM4=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "1c569cb148d3cc33c18e55aca5e99032166d8bb0", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_25": { + "inputs": { + "crane": "crane_45", + "hcUtils": "hcUtils_26", + "holochain": "holochain_47", + "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_51", + "versions": "versions_23" + }, + "locked": { + "lastModified": 1710170526, + "narHash": "sha256-8SMfoPrMF0nXBmN+k9Ckxy/1VFB7GWMX+ZWPQUl/ylM=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "8ae6c8817918006f25f0e38c0351809e23328df8", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_26": { + "inputs": { + "crane": "crane_46", + "hcUtils": "hcUtils_27", + "holochain": "holochain_45", + "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_49", + "versions": "versions_22" + }, + "locked": { + "lastModified": 1709938899, + "narHash": "sha256-1cojwgfN0Ey5eRyrlD5DktbraaFGK0LNv8LyZuQhBlc=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "528c55a03bec665e4f44e8b45f4b9d03ea9d9471", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_27": { + "inputs": { + "crane": "crane_47", + "hcUtils": "hcUtils_28", + "holochain": "holochain_43", + "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_47", + "versions": "versions_21" + }, + "locked": { + "lastModified": 1709847264, + "narHash": "sha256-209E9O8Ck/2fHMkjLVQ7/RlDfQtHJRh/vP+B8jFDQHE=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "5b8365d3a970df9038a4518dee76c0e40a5de813", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_28": { + "inputs": { + "crane": "crane_48", + "hcUtils": "hcUtils_29", + "holochain": "holochain_41", + "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_45", + "versions": "versions_20" + }, + "locked": { + "lastModified": 1709743154, + "narHash": "sha256-M16V2rHCdfTW9aot1XeMxWpmIs0axH2FbFpmsbBY5ZY=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "282b7ab81a5755e8c41982766caecb6663c63c2d", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_29": { + "inputs": { + "crane": "crane_49", + "hcUtils": "hcUtils_30", + "holochain": "holochain_39", + "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_43", + "versions": "versions_19" + }, + "locked": { + "lastModified": 1709649392, + "narHash": "sha256-X3ijMZFXDu2V2Wko1jFO8oovqbilGUj5U77WNiP+jvE=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "546c3c654904e1bd859dea39960475fef4c7924b", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_3": { + "inputs": { + "crane": "crane_3", + "hcUtils": "hcUtils_4", + "holochain": "holochain_13", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_15", + "versions": "versions_7" + }, + "locked": { + "lastModified": 1710259503, + "narHash": "sha256-GKjKaY3L1WCWLx6zHcR6EvR2JKCABpIbrGnuZcbEEPk=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "7503e467f55425cfa802f33cafcb53d6011417b7", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_30": { + "inputs": { + "crane": "crane_50", + "nixpkgs": "nixpkgs_53", + "rust-overlay": "rust-overlay_41" + }, + "locked": { + "lastModified": 1708609246, + "narHash": "sha256-8C5Nf84Sw3vutYxACA+N1Mc+QC06SddHzA1mjls/v8w=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "e7e9cfca683aaa78dfa7959bff7b1af91aa6651b", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_4": { + "inputs": { + "crane": "crane_4", + "hcUtils": "hcUtils_5", + "holochain": "holochain_11", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_13", + "versions": "versions_6" + }, + "locked": { + "lastModified": 1710259052, + "narHash": "sha256-L5u7wJDtKR/DfaS0tqUJymEimkwzTItmgkRug/q+qM4=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "1c569cb148d3cc33c18e55aca5e99032166d8bb0", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_5": { + "inputs": { + "crane": "crane_5", + "hcUtils": "hcUtils_6", + "holochain": "holochain_9", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_11", + "versions": "versions_5" + }, + "locked": { + "lastModified": 1710170526, + "narHash": "sha256-8SMfoPrMF0nXBmN+k9Ckxy/1VFB7GWMX+ZWPQUl/ylM=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "8ae6c8817918006f25f0e38c0351809e23328df8", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_6": { + "inputs": { + "crane": "crane_6", + "hcUtils": "hcUtils_7", + "holochain": "holochain_7", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_9", + "versions": "versions_4" + }, + "locked": { + "lastModified": 1709938899, + "narHash": "sha256-1cojwgfN0Ey5eRyrlD5DktbraaFGK0LNv8LyZuQhBlc=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "528c55a03bec665e4f44e8b45f4b9d03ea9d9471", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_7": { + "inputs": { + "crane": "crane_7", + "hcUtils": "hcUtils_8", + "holochain": "holochain_5", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_7", + "versions": "versions_3" + }, + "locked": { + "lastModified": 1709847264, + "narHash": "sha256-209E9O8Ck/2fHMkjLVQ7/RlDfQtHJRh/vP+B8jFDQHE=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "5b8365d3a970df9038a4518dee76c0e40a5de813", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_8": { + "inputs": { + "crane": "crane_8", + "hcUtils": "hcUtils_9", + "holochain": "holochain_3", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_5", + "versions": "versions_2" + }, + "locked": { + "lastModified": 1709743154, + "narHash": "sha256-M16V2rHCdfTW9aot1XeMxWpmIs0axH2FbFpmsbBY5ZY=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "282b7ab81a5755e8c41982766caecb6663c63c2d", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_9": { + "inputs": { + "crane": "crane_9", + "hcUtils": "hcUtils_10", + "holochain": "holochain", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_3", + "versions": "versions" + }, + "locked": { + "lastModified": 1709649392, + "narHash": "sha256-X3ijMZFXDu2V2Wko1jFO8oovqbilGUj5U77WNiP+jvE=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "546c3c654904e1bd859dea39960475fef4c7924b", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "holochain": { + "inputs": { + "cargo-chef": "cargo-chef", + "cargo-rdme": "cargo-rdme", + "crane": "crane_11", + "crate2nix": "crate2nix", + "empty": "empty", + "flake-compat": "flake-compat", + "flake-parts": "flake-parts", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter", + "nixpkgs": "nixpkgs_12", + "pre-commit-hooks-nix": "pre-commit-hooks-nix", + "repo-git": "repo-git", + "rust-overlay": "rust-overlay_2", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1708595708, + "narHash": "sha256-coOhtMii+epTQobSAj1qGfVYbN9Rs0oB+Rj6ZePqKIU=", + "owner": "holochain", + "repo": "holochain", + "rev": "e2fd7138bfeb1185a245421eefb2f83d237eccef", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_10": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_11": { + "inputs": { + "cargo-chef": "cargo-chef_6", + "cargo-rdme": "cargo-rdme_6", + "crane": "crane_16", + "crate2nix": "crate2nix_6", + "empty": "empty_6", + "flake-compat": "flake-compat_6", + "flake-parts": "flake-parts_6", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_6", + "nixpkgs": "nixpkgs_17", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_6", + "repo-git": "repo-git_6", + "rust-overlay": "rust-overlay_12", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_12": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_13": { + "inputs": { + "cargo-chef": "cargo-chef_7", + "cargo-rdme": "cargo-rdme_7", + "crane": "crane_17", + "crate2nix": "crate2nix_7", + "empty": "empty_7", + "flake-compat": "flake-compat_7", + "flake-parts": "flake-parts_7", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_7", + "nixpkgs": "nixpkgs_18", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_7", + "repo-git": "repo-git_7", + "rust-overlay": "rust-overlay_14", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_14": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_15": { + "inputs": { + "cargo-chef": "cargo-chef_8", + "cargo-rdme": "cargo-rdme_8", + "crane": "crane_18", + "crate2nix": "crate2nix_8", + "empty": "empty_8", + "flake-compat": "flake-compat_8", + "flake-parts": "flake-parts_8", + "holochain": [ + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_8", + "nixpkgs": "nixpkgs_19", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_8", + "repo-git": "repo-git_8", + "rust-overlay": "rust-overlay_16", + "scaffolding": [ + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_16": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_17": { + "inputs": { + "cargo-chef": "cargo-chef_9", + "cargo-rdme": "cargo-rdme_9", + "crane": "crane_19", + "crate2nix": "crate2nix_9", + "empty": "empty_9", + "flake-compat": "flake-compat_9", + "flake-parts": "flake-parts_9", + "holochain": [ + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_9", + "nixpkgs": "nixpkgs_20", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_9", + "repo-git": "repo-git_9", + "rust-overlay": "rust-overlay_18", + "scaffolding": [ + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", + "owner": "holochain", + "repo": "holochain", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_18": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_19": { + "inputs": { + "cargo-chef": "cargo-chef_10", + "cargo-rdme": "cargo-rdme_10", + "crane": "crane_20", + "crate2nix": "crate2nix_10", + "empty": "empty_10", + "flake-compat": "flake-compat_10", + "flake-parts": "flake-parts_10", + "holochain": [ + "holochain", + "empty" + ], + "lair": [ + "holochain", + "empty" + ], + "launcher": [ + "holochain", + "empty" + ], + "nix-filter": "nix-filter_10", + "nixpkgs": "nixpkgs_21", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_10", + "repo-git": "repo-git_10", + "rust-overlay": "rust-overlay_20", + "scaffolding": [ + "holochain", + "empty" + ], + "versions": [ + "versions" + ] + }, + "locked": { + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", + "owner": "holochain", + "repo": "holochain", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_2": { + "flake": false, + "locked": { + "lastModified": 1707871925, + "narHash": "sha256-LmDAQT21zXXgDl/68ERyCerAWCym7aKECnXsnyLcmXw=", + "owner": "holochain", + "repo": "holochain", + "rev": "2f3c8dce79586aad6f67d3428bf56d868303f956", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.37", + "repo": "holochain", + "type": "github" + } + }, + "holochain_20": { + "inputs": { + "cargo-chef": "cargo-chef_11", + "cargo-rdme": "cargo-rdme_11", + "crane": "crane_31", + "crate2nix": "crate2nix_11", + "empty": "empty_11", + "flake-compat": "flake-compat_11", + "flake-parts": "flake-parts_11", + "holochain": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_11", + "nixpkgs": "nixpkgs_33", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_11", + "repo-git": "repo-git_11", + "rust-overlay": "rust-overlay_22", + "scaffolding": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1708595708, + "narHash": "sha256-coOhtMii+epTQobSAj1qGfVYbN9Rs0oB+Rj6ZePqKIU=", + "owner": "holochain", + "repo": "holochain", + "rev": "e2fd7138bfeb1185a245421eefb2f83d237eccef", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_21": { + "flake": false, + "locked": { + "lastModified": 1707871925, + "narHash": "sha256-LmDAQT21zXXgDl/68ERyCerAWCym7aKECnXsnyLcmXw=", + "owner": "holochain", + "repo": "holochain", + "rev": "2f3c8dce79586aad6f67d3428bf56d868303f956", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.37", + "repo": "holochain", + "type": "github" + } + }, + "holochain_22": { + "inputs": { + "cargo-chef": "cargo-chef_12", + "cargo-rdme": "cargo-rdme_12", + "crane": "crane_32", + "crate2nix": "crate2nix_12", + "empty": "empty_12", + "flake-compat": "flake-compat_12", + "flake-parts": "flake-parts_12", + "holochain": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_12", + "nixpkgs": "nixpkgs_34", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_12", + "repo-git": "repo-git_12", + "rust-overlay": "rust-overlay_24", + "scaffolding": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709620314, + "narHash": "sha256-d7vekpj538VqdDrChFbVQpSVGDMnU1nSksbSzacKvyM=", + "owner": "holochain", + "repo": "holochain", + "rev": "392bdfd729fb6ce50f78f9e7f1c757dc392675f4", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_23": { + "flake": false, + "locked": { + "lastModified": 1709081329, + "narHash": "sha256-QP7WKySgEFbgNaSc7BNBBOWCVKuycXSp4HAfD4GTug8=", + "owner": "holochain", + "repo": "holochain", + "rev": "547c63a442e61be805887b644c78cf6f970d631b", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.38", + "repo": "holochain", + "type": "github" + } + }, + "holochain_24": { + "inputs": { + "cargo-chef": "cargo-chef_13", + "cargo-rdme": "cargo-rdme_13", + "crane": "crane_33", + "crate2nix": "crate2nix_13", + "empty": "empty_13", + "flake-compat": "flake-compat_13", + "flake-parts": "flake-parts_13", + "holochain": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_13", + "nixpkgs": "nixpkgs_35", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_13", + "repo-git": "repo-git_13", + "rust-overlay": "rust-overlay_26", + "scaffolding": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709731345, + "narHash": "sha256-YNMiQJRbnBdTQ/Q26M5zp+j2DGtpmaI/VWPVJxc4G7k=", + "owner": "holochain", + "repo": "holochain", + "rev": "3c3d2d73819e97cb9f5487d853f75a9954850f1e", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_25": { + "flake": false, + "locked": { + "lastModified": 1709081329, + "narHash": "sha256-QP7WKySgEFbgNaSc7BNBBOWCVKuycXSp4HAfD4GTug8=", + "owner": "holochain", + "repo": "holochain", + "rev": "547c63a442e61be805887b644c78cf6f970d631b", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.38", + "repo": "holochain", + "type": "github" + } + }, + "holochain_26": { + "inputs": { + "cargo-chef": "cargo-chef_14", + "cargo-rdme": "cargo-rdme_14", + "crane": "crane_34", + "crate2nix": "crate2nix_14", + "empty": "empty_14", + "flake-compat": "flake-compat_14", + "flake-parts": "flake-parts_14", + "holochain": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_14", + "nixpkgs": "nixpkgs_36", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_14", + "repo-git": "repo-git_14", + "rust-overlay": "rust-overlay_28", + "scaffolding": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709879507, + "narHash": "sha256-62ksNmQzgtsOlA6OFsdmVwUd6Me8g114DO9U4G23Ovk=", + "owner": "holochain", + "repo": "holochain", + "rev": "ef5d8cb9f6b57e208dff52ea173f13a1aaf46cce", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_27": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_28": { + "inputs": { + "cargo-chef": "cargo-chef_15", + "cargo-rdme": "cargo-rdme_15", + "crane": "crane_35", + "crate2nix": "crate2nix_15", + "empty": "empty_15", + "flake-compat": "flake-compat_15", + "flake-parts": "flake-parts_15", + "holochain": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_15", + "nixpkgs": "nixpkgs_37", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_15", + "repo-git": "repo-git_15", + "rust-overlay": "rust-overlay_30", + "scaffolding": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710138828, + "narHash": "sha256-MyZxoUdRrjIaiywthLfaBh2nUuvmgl8HSikKOoj9rxs=", + "owner": "holochain", + "repo": "holochain", + "rev": "5fdb77016be1925ec89cde1fffa0e9c80f9bbd92", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_29": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_3": { + "inputs": { + "cargo-chef": "cargo-chef_2", + "cargo-rdme": "cargo-rdme_2", + "crane": "crane_12", + "crate2nix": "crate2nix_2", + "empty": "empty_2", + "flake-compat": "flake-compat_2", + "flake-parts": "flake-parts_2", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_2", + "nixpkgs": "nixpkgs_13", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_2", + "repo-git": "repo-git_2", + "rust-overlay": "rust-overlay_4", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709620314, + "narHash": "sha256-d7vekpj538VqdDrChFbVQpSVGDMnU1nSksbSzacKvyM=", + "owner": "holochain", + "repo": "holochain", + "rev": "392bdfd729fb6ce50f78f9e7f1c757dc392675f4", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_30": { + "inputs": { + "cargo-chef": "cargo-chef_16", + "cargo-rdme": "cargo-rdme_16", + "crane": "crane_36", + "crate2nix": "crate2nix_16", + "empty": "empty_16", + "flake-compat": "flake-compat_16", + "flake-parts": "flake-parts_16", + "holochain": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_16", + "nixpkgs": "nixpkgs_38", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_16", + "repo-git": "repo-git_16", + "rust-overlay": "rust-overlay_32", + "scaffolding": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_31": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_32": { + "inputs": { + "cargo-chef": "cargo-chef_17", + "cargo-rdme": "cargo-rdme_17", + "crane": "crane_37", + "crate2nix": "crate2nix_17", + "empty": "empty_17", + "flake-compat": "flake-compat_17", + "flake-parts": "flake-parts_17", + "holochain": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_17", + "nixpkgs": "nixpkgs_39", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_17", + "repo-git": "repo-git_17", + "rust-overlay": "rust-overlay_34", + "scaffolding": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_33": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_34": { + "inputs": { + "cargo-chef": "cargo-chef_18", + "cargo-rdme": "cargo-rdme_18", + "crane": "crane_38", + "crate2nix": "crate2nix_18", + "empty": "empty_18", + "flake-compat": "flake-compat_18", + "flake-parts": "flake-parts_18", + "holochain": [ + "service", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "service", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "service", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_18", + "nixpkgs": "nixpkgs_40", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_18", + "repo-git": "repo-git_18", + "rust-overlay": "rust-overlay_36", + "scaffolding": [ + "service", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "service", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_35": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_36": { + "inputs": { + "cargo-chef": "cargo-chef_19", + "cargo-rdme": "cargo-rdme_19", + "crane": "crane_39", + "crate2nix": "crate2nix_19", + "empty": "empty_19", + "flake-compat": "flake-compat_19", + "flake-parts": "flake-parts_19", + "holochain": [ + "service", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "service", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "service", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_19", + "nixpkgs": "nixpkgs_41", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_19", + "repo-git": "repo-git_19", + "rust-overlay": "rust-overlay_38", + "scaffolding": [ + "service", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "service", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", + "owner": "holochain", + "repo": "holochain", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_37": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_38": { + "inputs": { + "cargo-chef": "cargo-chef_20", + "cargo-rdme": "cargo-rdme_20", + "crane": "crane_40", + "crate2nix": "crate2nix_20", + "empty": "empty_20", + "flake-compat": "flake-compat_20", + "flake-parts": "flake-parts_20", + "holochain": [ + "service", + "holochain", + "empty" + ], + "lair": [ + "service", + "holochain", + "empty" + ], + "launcher": [ + "service", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_20", + "nixpkgs": "nixpkgs_42", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_20", + "repo-git": "repo-git_20", + "rust-overlay": "rust-overlay_40", + "scaffolding": [ + "service", + "holochain", + "empty" + ], + "versions": [ + "service", + "versions" + ] + }, + "locked": { + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", + "owner": "holochain", + "repo": "holochain", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_39": { + "inputs": { + "cargo-chef": "cargo-chef_21", + "cargo-rdme": "cargo-rdme_21", + "crane": "crane_51", + "crate2nix": "crate2nix_21", + "empty": "empty_21", + "flake-compat": "flake-compat_21", + "flake-parts": "flake-parts_21", + "holochain": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_21", + "nixpkgs": "nixpkgs_54", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_21", + "repo-git": "repo-git_21", + "rust-overlay": "rust-overlay_42", + "scaffolding": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1708595708, + "narHash": "sha256-coOhtMii+epTQobSAj1qGfVYbN9Rs0oB+Rj6ZePqKIU=", + "owner": "holochain", + "repo": "holochain", + "rev": "e2fd7138bfeb1185a245421eefb2f83d237eccef", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_4": { + "flake": false, + "locked": { + "lastModified": 1709081329, + "narHash": "sha256-QP7WKySgEFbgNaSc7BNBBOWCVKuycXSp4HAfD4GTug8=", + "owner": "holochain", + "repo": "holochain", + "rev": "547c63a442e61be805887b644c78cf6f970d631b", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.38", + "repo": "holochain", + "type": "github" + } + }, + "holochain_40": { + "flake": false, + "locked": { + "lastModified": 1707871925, + "narHash": "sha256-LmDAQT21zXXgDl/68ERyCerAWCym7aKECnXsnyLcmXw=", + "owner": "holochain", + "repo": "holochain", + "rev": "2f3c8dce79586aad6f67d3428bf56d868303f956", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.37", + "repo": "holochain", + "type": "github" + } + }, + "holochain_41": { + "inputs": { + "cargo-chef": "cargo-chef_22", + "cargo-rdme": "cargo-rdme_22", + "crane": "crane_52", + "crate2nix": "crate2nix_22", + "empty": "empty_22", + "flake-compat": "flake-compat_22", + "flake-parts": "flake-parts_22", + "holochain": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_22", + "nixpkgs": "nixpkgs_55", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_22", + "repo-git": "repo-git_22", + "rust-overlay": "rust-overlay_44", + "scaffolding": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709620314, + "narHash": "sha256-d7vekpj538VqdDrChFbVQpSVGDMnU1nSksbSzacKvyM=", + "owner": "holochain", + "repo": "holochain", + "rev": "392bdfd729fb6ce50f78f9e7f1c757dc392675f4", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_42": { + "flake": false, + "locked": { + "lastModified": 1709081329, + "narHash": "sha256-QP7WKySgEFbgNaSc7BNBBOWCVKuycXSp4HAfD4GTug8=", + "owner": "holochain", + "repo": "holochain", + "rev": "547c63a442e61be805887b644c78cf6f970d631b", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.38", + "repo": "holochain", + "type": "github" + } + }, + "holochain_43": { + "inputs": { + "cargo-chef": "cargo-chef_23", + "cargo-rdme": "cargo-rdme_23", + "crane": "crane_53", + "crate2nix": "crate2nix_23", + "empty": "empty_23", + "flake-compat": "flake-compat_23", + "flake-parts": "flake-parts_23", + "holochain": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_23", + "nixpkgs": "nixpkgs_56", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_23", + "repo-git": "repo-git_23", + "rust-overlay": "rust-overlay_46", + "scaffolding": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709731345, + "narHash": "sha256-YNMiQJRbnBdTQ/Q26M5zp+j2DGtpmaI/VWPVJxc4G7k=", + "owner": "holochain", + "repo": "holochain", + "rev": "3c3d2d73819e97cb9f5487d853f75a9954850f1e", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_44": { + "flake": false, + "locked": { + "lastModified": 1709081329, + "narHash": "sha256-QP7WKySgEFbgNaSc7BNBBOWCVKuycXSp4HAfD4GTug8=", + "owner": "holochain", + "repo": "holochain", + "rev": "547c63a442e61be805887b644c78cf6f970d631b", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.38", + "repo": "holochain", + "type": "github" + } + }, + "holochain_45": { + "inputs": { + "cargo-chef": "cargo-chef_24", + "cargo-rdme": "cargo-rdme_24", + "crane": "crane_54", + "crate2nix": "crate2nix_24", + "empty": "empty_24", + "flake-compat": "flake-compat_24", + "flake-parts": "flake-parts_24", + "holochain": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_24", + "nixpkgs": "nixpkgs_57", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_24", + "repo-git": "repo-git_24", + "rust-overlay": "rust-overlay_48", + "scaffolding": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709879507, + "narHash": "sha256-62ksNmQzgtsOlA6OFsdmVwUd6Me8g114DO9U4G23Ovk=", + "owner": "holochain", + "repo": "holochain", + "rev": "ef5d8cb9f6b57e208dff52ea173f13a1aaf46cce", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_46": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_47": { + "inputs": { + "cargo-chef": "cargo-chef_25", + "cargo-rdme": "cargo-rdme_25", + "crane": "crane_55", + "crate2nix": "crate2nix_25", + "empty": "empty_25", + "flake-compat": "flake-compat_25", + "flake-parts": "flake-parts_25", + "holochain": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_25", + "nixpkgs": "nixpkgs_58", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_25", + "repo-git": "repo-git_25", + "rust-overlay": "rust-overlay_50", + "scaffolding": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710138828, + "narHash": "sha256-MyZxoUdRrjIaiywthLfaBh2nUuvmgl8HSikKOoj9rxs=", + "owner": "holochain", + "repo": "holochain", + "rev": "5fdb77016be1925ec89cde1fffa0e9c80f9bbd92", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_48": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_49": { + "inputs": { + "cargo-chef": "cargo-chef_26", + "cargo-rdme": "cargo-rdme_26", + "crane": "crane_56", + "crate2nix": "crate2nix_26", + "empty": "empty_26", + "flake-compat": "flake-compat_26", + "flake-parts": "flake-parts_26", + "holochain": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_26", + "nixpkgs": "nixpkgs_59", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_26", + "repo-git": "repo-git_26", + "rust-overlay": "rust-overlay_52", + "scaffolding": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_5": { + "inputs": { + "cargo-chef": "cargo-chef_3", + "cargo-rdme": "cargo-rdme_3", + "crane": "crane_13", + "crate2nix": "crate2nix_3", + "empty": "empty_3", + "flake-compat": "flake-compat_3", + "flake-parts": "flake-parts_3", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_3", + "nixpkgs": "nixpkgs_14", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_3", + "repo-git": "repo-git_3", + "rust-overlay": "rust-overlay_6", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709731345, + "narHash": "sha256-YNMiQJRbnBdTQ/Q26M5zp+j2DGtpmaI/VWPVJxc4G7k=", + "owner": "holochain", + "repo": "holochain", + "rev": "3c3d2d73819e97cb9f5487d853f75a9954850f1e", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_50": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_51": { + "inputs": { + "cargo-chef": "cargo-chef_27", + "cargo-rdme": "cargo-rdme_27", + "crane": "crane_57", + "crate2nix": "crate2nix_27", + "empty": "empty_27", + "flake-compat": "flake-compat_27", + "flake-parts": "flake-parts_27", + "holochain": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_27", + "nixpkgs": "nixpkgs_60", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_27", + "repo-git": "repo-git_27", + "rust-overlay": "rust-overlay_54", + "scaffolding": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_52": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_53": { + "inputs": { + "cargo-chef": "cargo-chef_28", + "cargo-rdme": "cargo-rdme_28", + "crane": "crane_58", + "crate2nix": "crate2nix_28", + "empty": "empty_28", + "flake-compat": "flake-compat_28", + "flake-parts": "flake-parts_28", + "holochain": [ + "service", + "module", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "service", + "module", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "service", + "module", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_28", + "nixpkgs": "nixpkgs_61", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_28", + "repo-git": "repo-git_28", + "rust-overlay": "rust-overlay_56", + "scaffolding": [ + "service", + "module", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "service", + "module", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_54": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_55": { + "inputs": { + "cargo-chef": "cargo-chef_29", + "cargo-rdme": "cargo-rdme_29", + "crane": "crane_59", + "crate2nix": "crate2nix_29", + "empty": "empty_29", + "flake-compat": "flake-compat_29", + "flake-parts": "flake-parts_29", + "holochain": [ + "service", + "module", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "service", + "module", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "service", + "module", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_29", + "nixpkgs": "nixpkgs_62", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_29", + "repo-git": "repo-git_29", + "rust-overlay": "rust-overlay_58", + "scaffolding": [ + "service", + "module", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "service", + "module", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", + "owner": "holochain", + "repo": "holochain", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_56": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_57": { + "inputs": { + "cargo-chef": "cargo-chef_30", + "cargo-rdme": "cargo-rdme_30", + "crane": "crane_60", + "crate2nix": "crate2nix_30", + "empty": "empty_30", + "flake-compat": "flake-compat_30", + "flake-parts": "flake-parts_30", + "holochain": [ + "service", + "module", + "holochain", + "empty" + ], + "lair": [ + "service", + "module", + "holochain", + "empty" + ], + "launcher": [ + "service", + "module", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_30", + "nixpkgs": "nixpkgs_63", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_30", + "repo-git": "repo-git_30", + "rust-overlay": "rust-overlay_60", + "scaffolding": [ + "service", + "module", + "holochain", + "empty" + ], + "versions": [ + "service", + "module", + "versions" + ] + }, + "locked": { + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", + "owner": "holochain", + "repo": "holochain", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_58": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_59": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_6": { + "flake": false, + "locked": { + "lastModified": 1709081329, + "narHash": "sha256-QP7WKySgEFbgNaSc7BNBBOWCVKuycXSp4HAfD4GTug8=", + "owner": "holochain", + "repo": "holochain", + "rev": "547c63a442e61be805887b644c78cf6f970d631b", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.38", + "repo": "holochain", + "type": "github" + } + }, + "holochain_60": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_7": { + "inputs": { + "cargo-chef": "cargo-chef_4", + "cargo-rdme": "cargo-rdme_4", + "crane": "crane_14", + "crate2nix": "crate2nix_4", + "empty": "empty_4", + "flake-compat": "flake-compat_4", + "flake-parts": "flake-parts_4", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_4", + "nixpkgs": "nixpkgs_15", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_4", + "repo-git": "repo-git_4", + "rust-overlay": "rust-overlay_8", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709879507, + "narHash": "sha256-62ksNmQzgtsOlA6OFsdmVwUd6Me8g114DO9U4G23Ovk=", + "owner": "holochain", + "repo": "holochain", + "rev": "ef5d8cb9f6b57e208dff52ea173f13a1aaf46cce", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_8": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_9": { + "inputs": { + "cargo-chef": "cargo-chef_5", + "cargo-rdme": "cargo-rdme_5", + "crane": "crane_15", + "crate2nix": "crate2nix_5", + "empty": "empty_5", + "flake-compat": "flake-compat_5", + "flake-parts": "flake-parts_5", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_5", + "nixpkgs": "nixpkgs_16", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_5", + "repo-git": "repo-git_5", + "rust-overlay": "rust-overlay_10", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710138828, + "narHash": "sha256-MyZxoUdRrjIaiywthLfaBh2nUuvmgl8HSikKOoj9rxs=", + "owner": "holochain", + "repo": "holochain", + "rev": "5fdb77016be1925ec89cde1fffa0e9c80f9bbd92", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "lair": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_10": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_11": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_12": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_13": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_14": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_15": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_16": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_17": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_18": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_19": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_2": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_20": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_21": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_22": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_23": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_24": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_25": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_26": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_27": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_28": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_29": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_3": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_30": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_4": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_5": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_6": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_7": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_8": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_9": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "launcher": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_10": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_11": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_12": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_13": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_14": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_15": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_16": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_17": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_18": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_19": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_2": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_20": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_21": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_22": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_23": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_24": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_25": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_26": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_27": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_28": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_29": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_3": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_30": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_4": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_5": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_6": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_7": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_8": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_9": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "module": { + "inputs": { + "hcUtils": "hcUtils_21", + "holochain": "holochain_57", + "nixpkgs": [ + "service", + "module", + "holochain", + "nixpkgs" + ], + "versions": "versions_28" + }, + "locked": { + "lastModified": 1, + "narHash": "sha256-9A4T+HMUFsJLan9oCcbKRHWtPkwFtQv2Bz5aXrexXd0=", + "path": "../module-repo", + "type": "path" + }, + "original": { + "path": "../module-repo", + "type": "path" + } + }, + "nix-filter": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_10": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_11": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_12": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_13": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_14": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_15": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_16": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_17": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_18": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_19": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_2": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_20": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_21": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_22": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_23": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_24": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_25": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_26": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_27": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_28": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_29": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_3": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_30": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_4": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_5": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_6": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_7": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_8": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_9": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_10": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_11": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_12": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_13": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_14": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_15": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_16": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_17": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_18": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_19": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_2": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_20": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_21": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_22": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_23": { "locked": { - "lastModified": 1710225101, - "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", - "owner": "holochain", - "repo": "holochain", - "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", "type": "github" } }, - "holochain_31": { - "flake": false, + "nixpkgs-lib_24": { "locked": { - "lastModified": 1709687030, - "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", - "owner": "holochain", - "repo": "holochain", - "rev": "cb671524080332983281baa2db7c1851344e79d2", + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.39", - "repo": "holochain", + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", "type": "github" } }, - "holochain_32": { - "inputs": { - "cargo-chef": "cargo-chef_17", - "cargo-rdme": "cargo-rdme_17", - "crane": "crane_36", - "crate2nix": "crate2nix_17", - "empty": "empty_17", - "flake-compat": "flake-compat_17", - "flake-parts": "flake-parts_17", - "holochain": [ - "profiles", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "profiles", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "profiles", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_17", - "nixpkgs": "nixpkgs_38", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_17", - "repo-git": "repo-git_17", - "rust-overlay": "rust-overlay_34", - "scaffolding": [ - "profiles", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "profiles", - "hcUtils", - "hcUtils", - "versions" - ] - }, + "nixpkgs-lib_25": { "locked": { - "lastModified": 1710225101, - "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", - "owner": "holochain", - "repo": "holochain", - "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", "type": "github" } }, - "holochain_33": { - "flake": false, + "nixpkgs-lib_26": { "locked": { - "lastModified": 1709687030, - "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", - "owner": "holochain", - "repo": "holochain", - "rev": "cb671524080332983281baa2db7c1851344e79d2", + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.39", - "repo": "holochain", + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", "type": "github" } }, - "holochain_34": { - "inputs": { - "cargo-chef": "cargo-chef_18", - "cargo-rdme": "cargo-rdme_18", - "crane": "crane_37", - "crate2nix": "crate2nix_18", - "empty": "empty_18", - "flake-compat": "flake-compat_18", - "flake-parts": "flake-parts_18", - "holochain": [ - "profiles", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "profiles", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "profiles", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_18", - "nixpkgs": "nixpkgs_39", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_18", - "repo-git": "repo-git_18", - "rust-overlay": "rust-overlay_36", - "scaffolding": [ - "profiles", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "profiles", - "hcUtils", - "versions" - ] - }, + "nixpkgs-lib_27": { "locked": { - "lastModified": 1710225101, - "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", - "owner": "holochain", - "repo": "holochain", - "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", "type": "github" } }, - "holochain_35": { - "flake": false, + "nixpkgs-lib_28": { "locked": { - "lastModified": 1709687030, - "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", - "owner": "holochain", - "repo": "holochain", - "rev": "cb671524080332983281baa2db7c1851344e79d2", + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.39", - "repo": "holochain", + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", "type": "github" } }, - "holochain_36": { - "inputs": { - "cargo-chef": "cargo-chef_19", - "cargo-rdme": "cargo-rdme_19", - "crane": "crane_38", - "crate2nix": "crate2nix_19", - "empty": "empty_19", - "flake-compat": "flake-compat_19", - "flake-parts": "flake-parts_19", - "holochain": [ - "profiles", - "holochain", - "empty" - ], - "lair": [ - "profiles", - "holochain", - "empty" - ], - "launcher": [ - "profiles", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_19", - "nixpkgs": "nixpkgs_40", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_19", - "repo-git": "repo-git_19", - "rust-overlay": "rust-overlay_38", - "scaffolding": [ - "profiles", - "holochain", - "empty" - ], - "versions": [ - "profiles", - "versions" - ] + "nixpkgs-lib_29": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_3": { "locked": { - "lastModified": 1710225101, - "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", - "owner": "holochain", - "repo": "holochain", - "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", "type": "github" } }, - "holochain_37": { - "flake": false, + "nixpkgs-lib_30": { "locked": { - "lastModified": 1709687030, - "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", - "owner": "holochain", - "repo": "holochain", - "rev": "cb671524080332983281baa2db7c1851344e79d2", + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.39", - "repo": "holochain", + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", "type": "github" } }, - "holochain_38": { - "flake": false, + "nixpkgs-lib_4": { "locked": { - "lastModified": 1709687030, - "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", - "owner": "holochain", - "repo": "holochain", - "rev": "cb671524080332983281baa2db7c1851344e79d2", + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.39", - "repo": "holochain", + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", "type": "github" } }, - "holochain_4": { - "flake": false, + "nixpkgs-lib_5": { "locked": { - "lastModified": 1709081329, - "narHash": "sha256-QP7WKySgEFbgNaSc7BNBBOWCVKuycXSp4HAfD4GTug8=", - "owner": "holochain", - "repo": "holochain", - "rev": "547c63a442e61be805887b644c78cf6f970d631b", + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.38", - "repo": "holochain", + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", "type": "github" } }, - "holochain_5": { - "inputs": { - "cargo-chef": "cargo-chef_3", - "cargo-rdme": "cargo-rdme_3", - "crane": "crane_13", - "crate2nix": "crate2nix_3", - "empty": "empty_3", - "flake-compat": "flake-compat_3", - "flake-parts": "flake-parts_3", - "holochain": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_3", - "nixpkgs": "nixpkgs_14", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_3", - "repo-git": "repo-git_3", - "rust-overlay": "rust-overlay_6", - "scaffolding": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "versions" - ] - }, + "nixpkgs-lib_6": { "locked": { - "lastModified": 1709731345, - "narHash": "sha256-YNMiQJRbnBdTQ/Q26M5zp+j2DGtpmaI/VWPVJxc4G7k=", - "owner": "holochain", - "repo": "holochain", - "rev": "3c3d2d73819e97cb9f5487d853f75a9954850f1e", + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", "type": "github" } }, - "holochain_6": { - "flake": false, + "nixpkgs-lib_7": { "locked": { - "lastModified": 1709081329, - "narHash": "sha256-QP7WKySgEFbgNaSc7BNBBOWCVKuycXSp4HAfD4GTug8=", - "owner": "holochain", - "repo": "holochain", - "rev": "547c63a442e61be805887b644c78cf6f970d631b", + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.38", - "repo": "holochain", + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", "type": "github" } }, - "holochain_7": { - "inputs": { - "cargo-chef": "cargo-chef_4", - "cargo-rdme": "cargo-rdme_4", - "crane": "crane_14", - "crate2nix": "crate2nix_4", - "empty": "empty_4", - "flake-compat": "flake-compat_4", - "flake-parts": "flake-parts_4", - "holochain": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_4", - "nixpkgs": "nixpkgs_15", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_4", - "repo-git": "repo-git_4", - "rust-overlay": "rust-overlay_8", - "scaffolding": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "versions" - ] - }, + "nixpkgs-lib_8": { "locked": { - "lastModified": 1709879507, - "narHash": "sha256-62ksNmQzgtsOlA6OFsdmVwUd6Me8g114DO9U4G23Ovk=", - "owner": "holochain", - "repo": "holochain", - "rev": "ef5d8cb9f6b57e208dff52ea173f13a1aaf46cce", + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", "type": "github" } }, - "holochain_8": { - "flake": false, + "nixpkgs-lib_9": { "locked": { - "lastModified": 1709687030, - "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", - "owner": "holochain", - "repo": "holochain", - "rev": "cb671524080332983281baa2db7c1851344e79d2", + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.39", - "repo": "holochain", + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", "type": "github" } }, - "holochain_9": { - "inputs": { - "cargo-chef": "cargo-chef_5", - "cargo-rdme": "cargo-rdme_5", - "crane": "crane_15", - "crate2nix": "crate2nix_5", - "empty": "empty_5", - "flake-compat": "flake-compat_5", - "flake-parts": "flake-parts_5", - "holochain": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_5", - "nixpkgs": "nixpkgs_16", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_5", - "repo-git": "repo-git_5", - "rust-overlay": "rust-overlay_10", - "scaffolding": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "versions" - ] - }, + "nixpkgs_10": { "locked": { - "lastModified": 1710138828, - "narHash": "sha256-MyZxoUdRrjIaiywthLfaBh2nUuvmgl8HSikKOoj9rxs=", - "owner": "holochain", - "repo": "holochain", - "rev": "5fdb77016be1925ec89cde1fffa0e9c80f9bbd92", + "lastModified": 1706925685, + "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "lair": { - "flake": false, + "nixpkgs_11": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1708603017, + "narHash": "sha256-YVMXAorB6bE+y3nFJY0OUfQERI3tyLTDqd6zuPfewp8=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "2a56c2ca6814a31f8211dad09302398a06acbcdf", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", + "owner": "nixos", + "repo": "nixpkgs", "type": "github" } }, - "lair_10": { - "flake": false, + "nixpkgs_12": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1708475490, + "narHash": "sha256-g1v0TsWBQPX97ziznfJdWhgMyMGtoBFs102xSYO4syU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0e74ca98a74bc7270d28838369593635a5db3260", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "lair_11": { - "flake": false, + "nixpkgs_13": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709479366, + "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "b8697e57f10292a6165a20f03d2f42920dfaf973", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "lair_12": { - "flake": false, + "nixpkgs_14": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709479366, + "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "b8697e57f10292a6165a20f03d2f42920dfaf973", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "lair_13": { - "flake": false, + "nixpkgs_15": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709703039, + "narHash": "sha256-6hqgQ8OK6gsMu1VtcGKBxKQInRLHtzulDo9Z5jxHEFY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "9df3e30ce24fd28c7b3e2de0d986769db5d6225d", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "lair_14": { - "flake": false, + "nixpkgs_16": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "lair_15": { - "flake": false, + "nixpkgs_17": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "lair_16": { - "flake": false, + "nixpkgs_18": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_19": { + "locked": { + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "lair_17": { - "flake": false, + "nixpkgs_2": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "lair_18": { - "flake": false, + "nixpkgs_20": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1710272261, + "narHash": "sha256-g0bDwXFmTE7uGDOs9HcJsfLFhH7fOsASbAuOzDC+fhQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0ad13a6833440b8e238947e47bea7f11071dc2b2", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "lair_19": { - "flake": false, + "nixpkgs_21": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1710272261, + "narHash": "sha256-g0bDwXFmTE7uGDOs9HcJsfLFhH7fOsASbAuOzDC+fhQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0ad13a6833440b8e238947e47bea7f11071dc2b2", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "lair_2": { - "flake": false, + "nixpkgs_22": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "lair_3": { - "flake": false, + "nixpkgs_23": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "lair_4": { - "flake": false, + "nixpkgs_24": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "lair_5": { - "flake": false, + "nixpkgs_25": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "lair_6": { - "flake": false, + "nixpkgs_26": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "lair_7": { - "flake": false, + "nixpkgs_27": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "lair_8": { - "flake": false, + "nixpkgs_28": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "lair_9": { - "flake": false, + "nixpkgs_29": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "launcher": { - "flake": false, + "nixpkgs_3": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "launcher_10": { - "flake": false, + "nixpkgs_30": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1706925685, + "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "launcher_11": { - "flake": false, + "nixpkgs_31": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1706925685, + "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "launcher_12": { - "flake": false, + "nixpkgs_32": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1708603017, + "narHash": "sha256-YVMXAorB6bE+y3nFJY0OUfQERI3tyLTDqd6zuPfewp8=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "2a56c2ca6814a31f8211dad09302398a06acbcdf", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", + "owner": "nixos", + "repo": "nixpkgs", "type": "github" } }, - "launcher_13": { - "flake": false, + "nixpkgs_33": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1708475490, + "narHash": "sha256-g1v0TsWBQPX97ziznfJdWhgMyMGtoBFs102xSYO4syU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0e74ca98a74bc7270d28838369593635a5db3260", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "launcher_14": { - "flake": false, + "nixpkgs_34": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709479366, + "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "b8697e57f10292a6165a20f03d2f42920dfaf973", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "launcher_15": { - "flake": false, + "nixpkgs_35": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709479366, + "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "b8697e57f10292a6165a20f03d2f42920dfaf973", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "launcher_16": { - "flake": false, + "nixpkgs_36": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709703039, + "narHash": "sha256-6hqgQ8OK6gsMu1VtcGKBxKQInRLHtzulDo9Z5jxHEFY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "9df3e30ce24fd28c7b3e2de0d986769db5d6225d", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "launcher_17": { - "flake": false, + "nixpkgs_37": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "launcher_18": { - "flake": false, + "nixpkgs_38": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "launcher_19": { - "flake": false, + "nixpkgs_39": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "launcher_2": { - "flake": false, + "nixpkgs_4": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "launcher_3": { - "flake": false, + "nixpkgs_40": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "launcher_4": { - "flake": false, + "nixpkgs_41": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1710272261, + "narHash": "sha256-g0bDwXFmTE7uGDOs9HcJsfLFhH7fOsASbAuOzDC+fhQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0ad13a6833440b8e238947e47bea7f11071dc2b2", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "launcher_5": { - "flake": false, + "nixpkgs_42": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1710272261, + "narHash": "sha256-g0bDwXFmTE7uGDOs9HcJsfLFhH7fOsASbAuOzDC+fhQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0ad13a6833440b8e238947e47bea7f11071dc2b2", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "launcher_6": { - "flake": false, + "nixpkgs_43": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "launcher_7": { - "flake": false, + "nixpkgs_44": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "launcher_8": { - "flake": false, + "nixpkgs_45": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "launcher_9": { - "flake": false, + "nixpkgs_46": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "nix-filter": { + "nixpkgs_47": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "nix-filter_10": { + "nixpkgs_48": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "nix-filter_11": { + "nixpkgs_49": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "nix-filter_12": { + "nixpkgs_5": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "nix-filter_13": { + "nixpkgs_50": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "nix-filter_14": { + "nixpkgs_51": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1706925685, + "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "nix-filter_15": { + "nixpkgs_52": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1706925685, + "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "nix-filter_16": { + "nixpkgs_53": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1708603017, + "narHash": "sha256-YVMXAorB6bE+y3nFJY0OUfQERI3tyLTDqd6zuPfewp8=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "2a56c2ca6814a31f8211dad09302398a06acbcdf", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", + "owner": "nixos", + "repo": "nixpkgs", "type": "github" } }, - "nix-filter_17": { + "nixpkgs_54": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1708475490, + "narHash": "sha256-g1v0TsWBQPX97ziznfJdWhgMyMGtoBFs102xSYO4syU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0e74ca98a74bc7270d28838369593635a5db3260", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "nix-filter_18": { + "nixpkgs_55": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1709479366, + "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "b8697e57f10292a6165a20f03d2f42920dfaf973", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "nix-filter_19": { + "nixpkgs_56": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1709479366, + "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "b8697e57f10292a6165a20f03d2f42920dfaf973", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "nix-filter_2": { + "nixpkgs_57": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1709703039, + "narHash": "sha256-6hqgQ8OK6gsMu1VtcGKBxKQInRLHtzulDo9Z5jxHEFY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "9df3e30ce24fd28c7b3e2de0d986769db5d6225d", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "nix-filter_3": { + "nixpkgs_58": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "nix-filter_4": { + "nixpkgs_59": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "nix-filter_5": { + "nixpkgs_6": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "nix-filter_6": { + "nixpkgs_60": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "nix-filter_7": { + "nixpkgs_61": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "nix-filter_8": { + "nixpkgs_62": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1710272261, + "narHash": "sha256-g0bDwXFmTE7uGDOs9HcJsfLFhH7fOsASbAuOzDC+fhQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0ad13a6833440b8e238947e47bea7f11071dc2b2", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "nix-filter_9": { + "nixpkgs_63": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1710272261, + "narHash": "sha256-g0bDwXFmTE7uGDOs9HcJsfLFhH7fOsASbAuOzDC+fhQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0ad13a6833440b8e238947e47bea7f11071dc2b2", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "nixpkgs": { + "nixpkgs_7": { "locked": { "lastModified": 1709386671, "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", @@ -6596,1526 +12051,1901 @@ "type": "github" } }, - "nixpkgs-lib": { + "nixpkgs_8": { "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "dir": "lib", "owner": "NixOS", - "ref": "nixos-unstable", + "ref": "nixpkgs-unstable", "repo": "nixpkgs", "type": "github" } }, - "nixpkgs-lib_10": { + "nixpkgs_9": { "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "lastModified": 1706925685, + "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", "type": "github" }, "original": { - "dir": "lib", "owner": "NixOS", - "ref": "nixos-unstable", + "ref": "nixpkgs-unstable", "repo": "nixpkgs", "type": "github" } }, - "nixpkgs-lib_11": { + "pre-commit-hooks-nix": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_12": { + "pre-commit-hooks-nix_10": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_11": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_12": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_13": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_14": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_13": { + "pre-commit-hooks-nix_15": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_14": { + "pre-commit-hooks-nix_16": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_15": { + "pre-commit-hooks-nix_17": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_16": { + "pre-commit-hooks-nix_18": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_17": { + "pre-commit-hooks-nix_19": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_18": { + "pre-commit-hooks-nix_2": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_19": { + "pre-commit-hooks-nix_20": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_2": { + "pre-commit-hooks-nix_21": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_3": { + "pre-commit-hooks-nix_22": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_4": { + "pre-commit-hooks-nix_23": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_5": { + "pre-commit-hooks-nix_24": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_6": { + "pre-commit-hooks-nix_25": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_7": { + "pre-commit-hooks-nix_26": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_8": { + "pre-commit-hooks-nix_27": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_9": { + "pre-commit-hooks-nix_28": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs_10": { + "pre-commit-hooks-nix_29": { + "flake": false, "locked": { - "lastModified": 1706925685, - "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs_11": { + "pre-commit-hooks-nix_3": { + "flake": false, "locked": { - "lastModified": 1708603017, - "narHash": "sha256-YVMXAorB6bE+y3nFJY0OUfQERI3tyLTDqd6zuPfewp8=", - "owner": "nixos", - "repo": "nixpkgs", - "rev": "2a56c2ca6814a31f8211dad09302398a06acbcdf", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "owner": "nixos", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs_12": { + "pre-commit-hooks-nix_30": { + "flake": false, "locked": { - "lastModified": 1708475490, - "narHash": "sha256-g1v0TsWBQPX97ziznfJdWhgMyMGtoBFs102xSYO4syU=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "0e74ca98a74bc7270d28838369593635a5db3260", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" } }, - "nixpkgs_13": { + "pre-commit-hooks-nix_4": { + "flake": false, "locked": { - "lastModified": 1709479366, - "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "b8697e57f10292a6165a20f03d2f42920dfaf973", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" } }, - "nixpkgs_14": { + "pre-commit-hooks-nix_5": { + "flake": false, "locked": { - "lastModified": 1709479366, - "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "b8697e57f10292a6165a20f03d2f42920dfaf973", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" } }, - "nixpkgs_15": { + "pre-commit-hooks-nix_6": { + "flake": false, "locked": { - "lastModified": 1709703039, - "narHash": "sha256-6hqgQ8OK6gsMu1VtcGKBxKQInRLHtzulDo9Z5jxHEFY=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "9df3e30ce24fd28c7b3e2de0d986769db5d6225d", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" } }, - "nixpkgs_16": { + "pre-commit-hooks-nix_7": { + "flake": false, "locked": { - "lastModified": 1709961763, - "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" } }, - "nixpkgs_17": { + "pre-commit-hooks-nix_8": { + "flake": false, "locked": { - "lastModified": 1709961763, - "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" } }, - "nixpkgs_18": { + "pre-commit-hooks-nix_9": { + "flake": false, "locked": { - "lastModified": 1709961763, - "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" } }, - "nixpkgs_19": { + "repo-git": { + "flake": false, "locked": { - "lastModified": 1709961763, - "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_2": { + "repo-git_10": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" + } + }, + "repo-git_11": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_20": { + "repo-git_12": { + "flake": false, "locked": { - "lastModified": 1710272261, - "narHash": "sha256-g0bDwXFmTE7uGDOs9HcJsfLFhH7fOsASbAuOzDC+fhQ=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "0ad13a6833440b8e238947e47bea7f11071dc2b2", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_21": { + "repo-git_13": { + "flake": false, "locked": { - "lastModified": 1710272261, - "narHash": "sha256-g0bDwXFmTE7uGDOs9HcJsfLFhH7fOsASbAuOzDC+fhQ=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "0ad13a6833440b8e238947e47bea7f11071dc2b2", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_22": { + "repo-git_14": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_23": { + "repo-git_15": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_24": { + "repo-git_16": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_25": { + "repo-git_17": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_26": { + "repo-git_18": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_27": { + "repo-git_19": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_28": { + "repo-git_2": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_29": { + "repo-git_20": { + "flake": false, "locked": { - "lastModified": 1706925685, - "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_3": { + "repo-git_21": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_30": { + "repo-git_22": { + "flake": false, "locked": { - "lastModified": 1706925685, - "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_31": { + "repo-git_23": { + "flake": false, "locked": { - "lastModified": 1708603017, - "narHash": "sha256-YVMXAorB6bE+y3nFJY0OUfQERI3tyLTDqd6zuPfewp8=", - "owner": "nixos", - "repo": "nixpkgs", - "rev": "2a56c2ca6814a31f8211dad09302398a06acbcdf", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "nixos", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_32": { + "repo-git_24": { + "flake": false, "locked": { - "lastModified": 1708475490, - "narHash": "sha256-g1v0TsWBQPX97ziznfJdWhgMyMGtoBFs102xSYO4syU=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "0e74ca98a74bc7270d28838369593635a5db3260", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_33": { - "locked": { - "lastModified": 1709479366, - "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "b8697e57f10292a6165a20f03d2f42920dfaf973", - "type": "github" + "repo-git_25": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_34": { + "repo-git_26": { + "flake": false, "locked": { - "lastModified": 1709479366, - "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "b8697e57f10292a6165a20f03d2f42920dfaf973", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_35": { + "repo-git_27": { + "flake": false, "locked": { - "lastModified": 1709703039, - "narHash": "sha256-6hqgQ8OK6gsMu1VtcGKBxKQInRLHtzulDo9Z5jxHEFY=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "9df3e30ce24fd28c7b3e2de0d986769db5d6225d", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_36": { + "repo-git_28": { + "flake": false, "locked": { - "lastModified": 1709961763, - "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_37": { + "repo-git_29": { + "flake": false, "locked": { - "lastModified": 1709961763, - "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_38": { + "repo-git_3": { + "flake": false, "locked": { - "lastModified": 1709961763, - "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_39": { + "repo-git_30": { + "flake": false, "locked": { - "lastModified": 1709961763, - "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_4": { + "repo-git_4": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_40": { + "repo-git_5": { + "flake": false, "locked": { - "lastModified": 1709961763, - "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_5": { + "repo-git_6": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_6": { + "repo-git_7": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_7": { + "repo-git_8": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_8": { + "repo-git_9": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_9": { + "root": { + "inputs": { + "hcUtils": "hcUtils", + "holochain": "holochain_19", + "nixpkgs": [ + "holochain", + "nixpkgs" + ], + "service": "service", + "versions": "versions_30" + } + }, + "rust-overlay": { + "inputs": { + "flake-utils": "flake-utils", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1706925685, - "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", + "lastModified": 1708567842, + "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", "type": "github" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix": { - "flake": false, + "rust-overlay_10": { + "inputs": { + "flake-utils": "flake-utils_10", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1710123130, + "narHash": "sha256-EoGL/WSM1M2L099Q91mPKO/FRV2iu2ZLOEp3y5sLfiE=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "73aca260afe5d41d3ebce932c8d896399c9d5174", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_10": { - "flake": false, + "rust-overlay_11": { + "inputs": { + "flake-utils": "flake-utils_11", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1710123130, + "narHash": "sha256-EoGL/WSM1M2L099Q91mPKO/FRV2iu2ZLOEp3y5sLfiE=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "73aca260afe5d41d3ebce932c8d896399c9d5174", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_11": { - "flake": false, + "rust-overlay_12": { + "inputs": { + "flake-utils": "flake-utils_12", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_12": { - "flake": false, + "rust-overlay_13": { + "inputs": { + "flake-utils": "flake-utils_13", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_13": { - "flake": false, + "rust-overlay_14": { + "inputs": { + "flake-utils": "flake-utils_14", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_14": { - "flake": false, + "rust-overlay_15": { + "inputs": { + "flake-utils": "flake-utils_15", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_15": { - "flake": false, + "rust-overlay_16": { + "inputs": { + "flake-utils": "flake-utils_16", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_16": { - "flake": false, + "rust-overlay_17": { + "inputs": { + "flake-utils": "flake-utils_17", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_17": { - "flake": false, + "rust-overlay_18": { + "inputs": { + "flake-utils": "flake-utils_18", + "nixpkgs": [ + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1710295923, + "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_18": { - "flake": false, + "rust-overlay_19": { + "inputs": { + "flake-utils": "flake-utils_19", + "nixpkgs": [ + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1710295923, + "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_19": { - "flake": false, + "rust-overlay_2": { + "inputs": { + "flake-utils": "flake-utils_2", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1708567842, + "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_2": { - "flake": false, + "rust-overlay_20": { + "inputs": { + "flake-utils": "flake-utils_20", + "nixpkgs": [ + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1710295923, + "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_3": { - "flake": false, + "rust-overlay_21": { + "inputs": { + "flake-utils": "flake-utils_21", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1708567842, + "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_4": { - "flake": false, + "rust-overlay_22": { + "inputs": { + "flake-utils": "flake-utils_22", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1708567842, + "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_5": { - "flake": false, + "rust-overlay_23": { + "inputs": { + "flake-utils": "flake-utils_23", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1708567842, + "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_6": { - "flake": false, + "rust-overlay_24": { + "inputs": { + "flake-utils": "flake-utils_24", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1709604635, + "narHash": "sha256-le4fwmWmjGRYWwkho0Gr7mnnZndOOe4XGbLw68OvF40=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "e86c0fb5d3a22a5f30d7f64ecad88643fe26449d", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_7": { - "flake": false, + "rust-overlay_25": { + "inputs": { + "flake-utils": "flake-utils_25", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1709604635, + "narHash": "sha256-le4fwmWmjGRYWwkho0Gr7mnnZndOOe4XGbLw68OvF40=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "e86c0fb5d3a22a5f30d7f64ecad88643fe26449d", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_8": { - "flake": false, + "rust-overlay_26": { + "inputs": { + "flake-utils": "flake-utils_26", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1709691047, + "narHash": "sha256-2Vwx1FLufoMEcOS8KAwP8H83IP3Hw6ZPrIDHkSXrFCY=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "d55139f3061cdf2c8f5f7bc8d49e884826e6a4ea", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_9": { - "flake": false, + "rust-overlay_27": { + "inputs": { + "flake-utils": "flake-utils_27", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1709691047, + "narHash": "sha256-2Vwx1FLufoMEcOS8KAwP8H83IP3Hw6ZPrIDHkSXrFCY=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "d55139f3061cdf2c8f5f7bc8d49e884826e6a4ea", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "profiles": { + "rust-overlay_28": { "inputs": { - "hcUtils": "hcUtils_11", - "holochain": "holochain_36", + "flake-utils": "flake-utils_28", "nixpkgs": [ - "profiles", + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", "holochain", "nixpkgs" - ], - "versions": "versions_18" + ] }, "locked": { - "lastModified": 1710262853, - "narHash": "sha256-z7RieH95tb4MzU4wFDG197zx4Ei6XFgnzwLp5fGgPiU=", - "owner": "holochain-open-dev", - "repo": "profiles", - "rev": "81216b4408c14505c3b5533a8cd01347f9cb70e1", + "lastModified": 1709863839, + "narHash": "sha256-QpEL5FmZNi2By3sKZY55wGniFXc4wEn9PQczlE8TG0o=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "e5ab9ee98f479081ad971473d2bc13c59e9fbc0a", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "ref": "nixify", - "repo": "profiles", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "repo-git": { - "flake": false, - "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "rust-overlay_29": { + "inputs": { + "flake-utils": "flake-utils_29", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] }, - "original": { - "type": "file", - "url": "file:/dev/null" - } - }, - "repo-git_10": { - "flake": false, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1709863839, + "narHash": "sha256-QpEL5FmZNi2By3sKZY55wGniFXc4wEn9PQczlE8TG0o=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "e5ab9ee98f479081ad971473d2bc13c59e9fbc0a", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "repo-git_11": { - "flake": false, - "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "rust-overlay_3": { + "inputs": { + "flake-utils": "flake-utils_3", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] }, - "original": { - "type": "file", - "url": "file:/dev/null" - } - }, - "repo-git_12": { - "flake": false, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1708567842, + "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "repo-git_13": { - "flake": false, - "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "rust-overlay_30": { + "inputs": { + "flake-utils": "flake-utils_30", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] }, - "original": { - "type": "file", - "url": "file:/dev/null" - } - }, - "repo-git_14": { - "flake": false, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1710123130, + "narHash": "sha256-EoGL/WSM1M2L099Q91mPKO/FRV2iu2ZLOEp3y5sLfiE=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "73aca260afe5d41d3ebce932c8d896399c9d5174", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "repo-git_15": { - "flake": false, - "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "rust-overlay_31": { + "inputs": { + "flake-utils": "flake-utils_31", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] }, - "original": { - "type": "file", - "url": "file:/dev/null" - } - }, - "repo-git_16": { - "flake": false, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1710123130, + "narHash": "sha256-EoGL/WSM1M2L099Q91mPKO/FRV2iu2ZLOEp3y5sLfiE=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "73aca260afe5d41d3ebce932c8d896399c9d5174", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "repo-git_17": { - "flake": false, + "rust-overlay_32": { + "inputs": { + "flake-utils": "flake-utils_32", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "repo-git_18": { - "flake": false, - "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "rust-overlay_33": { + "inputs": { + "flake-utils": "flake-utils_33", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "repo-git_19": { - "flake": false, + "rust-overlay_34": { + "inputs": { + "flake-utils": "flake-utils_34", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "repo-git_2": { - "flake": false, + "rust-overlay_35": { + "inputs": { + "flake-utils": "flake-utils_35", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "repo-git_3": { - "flake": false, + "rust-overlay_36": { + "inputs": { + "flake-utils": "flake-utils_36", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "repo-git_4": { - "flake": false, + "rust-overlay_37": { + "inputs": { + "flake-utils": "flake-utils_37", + "nixpkgs": [ + "service", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "repo-git_5": { - "flake": false, + "rust-overlay_38": { + "inputs": { + "flake-utils": "flake-utils_38", + "nixpkgs": [ + "service", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1710295923, + "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "repo-git_6": { - "flake": false, + "rust-overlay_39": { + "inputs": { + "flake-utils": "flake-utils_39", + "nixpkgs": [ + "service", + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1710295923, + "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "repo-git_7": { - "flake": false, + "rust-overlay_4": { + "inputs": { + "flake-utils": "flake-utils_4", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1709604635, + "narHash": "sha256-le4fwmWmjGRYWwkho0Gr7mnnZndOOe4XGbLw68OvF40=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "e86c0fb5d3a22a5f30d7f64ecad88643fe26449d", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "repo-git_8": { - "flake": false, + "rust-overlay_40": { + "inputs": { + "flake-utils": "flake-utils_40", + "nixpkgs": [ + "service", + "holochain", + "nixpkgs" + ] + }, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1710295923, + "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "repo-git_9": { - "flake": false, + "rust-overlay_41": { + "inputs": { + "flake-utils": "flake-utils_41", + "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1708567842, + "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "root": { + "rust-overlay_42": { "inputs": { - "hcUtils": "hcUtils", - "holochain": "holochain_19", + "flake-utils": "flake-utils_42", "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", "holochain", "nixpkgs" - ], - "profiles": "profiles", - "versions": "versions_19" + ] + }, + "locked": { + "lastModified": 1708567842, + "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "rust-overlay": { + "rust-overlay_43": { "inputs": { - "flake-utils": "flake-utils", + "flake-utils": "flake-utils_43", "nixpkgs": [ - "hcUtils", + "service", + "module", "hcUtils", "hcUtils", "hcUtils", @@ -8142,10 +13972,15 @@ "type": "github" } }, - "rust-overlay_10": { + "rust-overlay_44": { "inputs": { - "flake-utils": "flake-utils_10", + "flake-utils": "flake-utils_44", "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8156,11 +13991,11 @@ ] }, "locked": { - "lastModified": 1710123130, - "narHash": "sha256-EoGL/WSM1M2L099Q91mPKO/FRV2iu2ZLOEp3y5sLfiE=", + "lastModified": 1709604635, + "narHash": "sha256-le4fwmWmjGRYWwkho0Gr7mnnZndOOe4XGbLw68OvF40=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "73aca260afe5d41d3ebce932c8d896399c9d5174", + "rev": "e86c0fb5d3a22a5f30d7f64ecad88643fe26449d", "type": "github" }, "original": { @@ -8169,10 +14004,15 @@ "type": "github" } }, - "rust-overlay_11": { + "rust-overlay_45": { "inputs": { - "flake-utils": "flake-utils_11", + "flake-utils": "flake-utils_45", "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8182,11 +14022,11 @@ ] }, "locked": { - "lastModified": 1710123130, - "narHash": "sha256-EoGL/WSM1M2L099Q91mPKO/FRV2iu2ZLOEp3y5sLfiE=", + "lastModified": 1709604635, + "narHash": "sha256-le4fwmWmjGRYWwkho0Gr7mnnZndOOe4XGbLw68OvF40=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "73aca260afe5d41d3ebce932c8d896399c9d5174", + "rev": "e86c0fb5d3a22a5f30d7f64ecad88643fe26449d", "type": "github" }, "original": { @@ -8195,10 +14035,15 @@ "type": "github" } }, - "rust-overlay_12": { + "rust-overlay_46": { "inputs": { - "flake-utils": "flake-utils_12", + "flake-utils": "flake-utils_46", "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8208,11 +14053,11 @@ ] }, "locked": { - "lastModified": 1710209426, - "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "lastModified": 1709691047, + "narHash": "sha256-2Vwx1FLufoMEcOS8KAwP8H83IP3Hw6ZPrIDHkSXrFCY=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "rev": "d55139f3061cdf2c8f5f7bc8d49e884826e6a4ea", "type": "github" }, "original": { @@ -8221,10 +14066,15 @@ "type": "github" } }, - "rust-overlay_13": { + "rust-overlay_47": { "inputs": { - "flake-utils": "flake-utils_13", + "flake-utils": "flake-utils_47", "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8233,11 +14083,11 @@ ] }, "locked": { - "lastModified": 1710209426, - "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "lastModified": 1709691047, + "narHash": "sha256-2Vwx1FLufoMEcOS8KAwP8H83IP3Hw6ZPrIDHkSXrFCY=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "rev": "d55139f3061cdf2c8f5f7bc8d49e884826e6a4ea", "type": "github" }, "original": { @@ -8246,10 +14096,15 @@ "type": "github" } }, - "rust-overlay_14": { + "rust-overlay_48": { "inputs": { - "flake-utils": "flake-utils_14", + "flake-utils": "flake-utils_48", "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8258,11 +14113,11 @@ ] }, "locked": { - "lastModified": 1710209426, - "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "lastModified": 1709863839, + "narHash": "sha256-QpEL5FmZNi2By3sKZY55wGniFXc4wEn9PQczlE8TG0o=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "rev": "e5ab9ee98f479081ad971473d2bc13c59e9fbc0a", "type": "github" }, "original": { @@ -8271,10 +14126,15 @@ "type": "github" } }, - "rust-overlay_15": { + "rust-overlay_49": { "inputs": { - "flake-utils": "flake-utils_15", + "flake-utils": "flake-utils_49", "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8282,11 +14142,11 @@ ] }, "locked": { - "lastModified": 1710209426, - "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "lastModified": 1709863839, + "narHash": "sha256-QpEL5FmZNi2By3sKZY55wGniFXc4wEn9PQczlE8TG0o=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "rev": "e5ab9ee98f479081ad971473d2bc13c59e9fbc0a", "type": "github" }, "original": { @@ -8295,22 +14155,27 @@ "type": "github" } }, - "rust-overlay_16": { + "rust-overlay_5": { "inputs": { - "flake-utils": "flake-utils_16", + "flake-utils": "flake-utils_5", "nixpkgs": [ "hcUtils", "hcUtils", - "holochain", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", "nixpkgs" ] }, "locked": { - "lastModified": 1710209426, - "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "lastModified": 1709604635, + "narHash": "sha256-le4fwmWmjGRYWwkho0Gr7mnnZndOOe4XGbLw68OvF40=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "rev": "e86c0fb5d3a22a5f30d7f64ecad88643fe26449d", "type": "github" }, "original": { @@ -8319,21 +14184,27 @@ "type": "github" } }, - "rust-overlay_17": { + "rust-overlay_50": { "inputs": { - "flake-utils": "flake-utils_17", + "flake-utils": "flake-utils_50", "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", "hcUtils", "hcUtils", + "holochain", "nixpkgs" ] }, "locked": { - "lastModified": 1710209426, - "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "lastModified": 1710123130, + "narHash": "sha256-EoGL/WSM1M2L099Q91mPKO/FRV2iu2ZLOEp3y5sLfiE=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "rev": "73aca260afe5d41d3ebce932c8d896399c9d5174", "type": "github" }, "original": { @@ -8342,21 +14213,26 @@ "type": "github" } }, - "rust-overlay_18": { + "rust-overlay_51": { "inputs": { - "flake-utils": "flake-utils_18", + "flake-utils": "flake-utils_51", "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", "hcUtils", - "holochain", "nixpkgs" ] }, "locked": { - "lastModified": 1710295923, - "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "lastModified": 1710123130, + "narHash": "sha256-EoGL/WSM1M2L099Q91mPKO/FRV2iu2ZLOEp3y5sLfiE=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", + "rev": "73aca260afe5d41d3ebce932c8d896399c9d5174", "type": "github" }, "original": { @@ -8365,20 +14241,26 @@ "type": "github" } }, - "rust-overlay_19": { + "rust-overlay_52": { "inputs": { - "flake-utils": "flake-utils_19", + "flake-utils": "flake-utils_52", "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", "hcUtils", + "hcUtils", + "holochain", "nixpkgs" ] }, "locked": { - "lastModified": 1710295923, - "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { @@ -8387,29 +14269,25 @@ "type": "github" } }, - "rust-overlay_2": { + "rust-overlay_53": { "inputs": { - "flake-utils": "flake-utils_2", + "flake-utils": "flake-utils_53", "nixpkgs": [ + "service", + "module", "hcUtils", "hcUtils", "hcUtils", "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", "nixpkgs" ] }, "locked": { - "lastModified": 1708567842, - "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { @@ -8418,20 +14296,25 @@ "type": "github" } }, - "rust-overlay_20": { + "rust-overlay_54": { "inputs": { - "flake-utils": "flake-utils_20", + "flake-utils": "flake-utils_54", "nixpkgs": [ + "service", + "module", + "hcUtils", + "hcUtils", + "hcUtils", "holochain", "nixpkgs" ] }, "locked": { - "lastModified": 1710295923, - "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { @@ -8440,17 +14323,12 @@ "type": "github" } }, - "rust-overlay_21": { + "rust-overlay_55": { "inputs": { - "flake-utils": "flake-utils_21", + "flake-utils": "flake-utils_55", "nixpkgs": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", + "service", + "module", "hcUtils", "hcUtils", "hcUtils", @@ -8458,11 +14336,11 @@ ] }, "locked": { - "lastModified": 1708567842, - "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { @@ -8471,17 +14349,12 @@ "type": "github" } }, - "rust-overlay_22": { + "rust-overlay_56": { "inputs": { - "flake-utils": "flake-utils_22", + "flake-utils": "flake-utils_56", "nixpkgs": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", + "service", + "module", "hcUtils", "hcUtils", "holochain", @@ -8489,11 +14362,11 @@ ] }, "locked": { - "lastModified": 1708567842, - "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { @@ -8502,28 +14375,23 @@ "type": "github" } }, - "rust-overlay_23": { + "rust-overlay_57": { "inputs": { - "flake-utils": "flake-utils_23", + "flake-utils": "flake-utils_57", "nixpkgs": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", + "service", + "module", "hcUtils", "hcUtils", "nixpkgs" ] }, "locked": { - "lastModified": 1708567842, - "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { @@ -8532,28 +14400,23 @@ "type": "github" } }, - "rust-overlay_24": { + "rust-overlay_58": { "inputs": { - "flake-utils": "flake-utils_24", + "flake-utils": "flake-utils_58", "nixpkgs": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", + "service", + "module", "hcUtils", "holochain", "nixpkgs" ] }, "locked": { - "lastModified": 1709604635, - "narHash": "sha256-le4fwmWmjGRYWwkho0Gr7mnnZndOOe4XGbLw68OvF40=", + "lastModified": 1710295923, + "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "e86c0fb5d3a22a5f30d7f64ecad88643fe26449d", + "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", "type": "github" }, "original": { @@ -8562,11 +14425,34 @@ "type": "github" } }, - "rust-overlay_25": { + "rust-overlay_59": { "inputs": { - "flake-utils": "flake-utils_25", + "flake-utils": "flake-utils_59", + "nixpkgs": [ + "service", + "module", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710295923, + "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_6": { + "inputs": { + "flake-utils": "flake-utils_6", "nixpkgs": [ - "profiles", "hcUtils", "hcUtils", "hcUtils", @@ -8574,15 +14460,16 @@ "hcUtils", "hcUtils", "hcUtils", + "holochain", "nixpkgs" ] }, "locked": { - "lastModified": 1709604635, - "narHash": "sha256-le4fwmWmjGRYWwkho0Gr7mnnZndOOe4XGbLw68OvF40=", + "lastModified": 1709691047, + "narHash": "sha256-2Vwx1FLufoMEcOS8KAwP8H83IP3Hw6ZPrIDHkSXrFCY=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "e86c0fb5d3a22a5f30d7f64ecad88643fe26449d", + "rev": "d55139f3061cdf2c8f5f7bc8d49e884826e6a4ea", "type": "github" }, "original": { @@ -8591,27 +14478,22 @@ "type": "github" } }, - "rust-overlay_26": { + "rust-overlay_60": { "inputs": { - "flake-utils": "flake-utils_26", + "flake-utils": "flake-utils_60", "nixpkgs": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", + "service", + "module", "holochain", "nixpkgs" ] }, "locked": { - "lastModified": 1709691047, - "narHash": "sha256-2Vwx1FLufoMEcOS8KAwP8H83IP3Hw6ZPrIDHkSXrFCY=", + "lastModified": 1710295923, + "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "d55139f3061cdf2c8f5f7bc8d49e884826e6a4ea", + "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", "type": "github" }, "original": { @@ -8620,11 +14502,11 @@ "type": "github" } }, - "rust-overlay_27": { + "rust-overlay_7": { "inputs": { - "flake-utils": "flake-utils_27", + "flake-utils": "flake-utils_7", "nixpkgs": [ - "profiles", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8648,11 +14530,11 @@ "type": "github" } }, - "rust-overlay_28": { + "rust-overlay_8": { "inputs": { - "flake-utils": "flake-utils_28", + "flake-utils": "flake-utils_8", "nixpkgs": [ - "profiles", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8676,11 +14558,11 @@ "type": "github" } }, - "rust-overlay_29": { + "rust-overlay_9": { "inputs": { - "flake-utils": "flake-utils_29", + "flake-utils": "flake-utils_9", "nixpkgs": [ - "profiles", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8703,431 +14585,432 @@ "type": "github" } }, - "rust-overlay_3": { - "inputs": { - "flake-utils": "flake-utils_3", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "nixpkgs" - ] + "scaffolding": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_10": { + "flake": false, "locked": { - "lastModified": 1708567842, - "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", - "owner": "oxalica", - "repo": "rust-overlay", - "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", "type": "github" }, "original": { - "owner": "oxalica", - "repo": "rust-overlay", + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", "type": "github" } }, - "rust-overlay_30": { - "inputs": { - "flake-utils": "flake-utils_30", - "nixpkgs": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ] + "scaffolding_11": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_12": { + "flake": false, "locked": { - "lastModified": 1710123130, - "narHash": "sha256-EoGL/WSM1M2L099Q91mPKO/FRV2iu2ZLOEp3y5sLfiE=", - "owner": "oxalica", - "repo": "rust-overlay", - "rev": "73aca260afe5d41d3ebce932c8d896399c9d5174", + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", "type": "github" }, "original": { - "owner": "oxalica", - "repo": "rust-overlay", + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", "type": "github" } }, - "rust-overlay_31": { - "inputs": { - "flake-utils": "flake-utils_31", - "nixpkgs": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "nixpkgs" - ] + "scaffolding_13": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_14": { + "flake": false, "locked": { - "lastModified": 1710123130, - "narHash": "sha256-EoGL/WSM1M2L099Q91mPKO/FRV2iu2ZLOEp3y5sLfiE=", - "owner": "oxalica", - "repo": "rust-overlay", - "rev": "73aca260afe5d41d3ebce932c8d896399c9d5174", + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", "type": "github" }, "original": { - "owner": "oxalica", - "repo": "rust-overlay", + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", "type": "github" } }, - "rust-overlay_32": { - "inputs": { - "flake-utils": "flake-utils_32", - "nixpkgs": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ] + "scaffolding_15": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_16": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_17": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_18": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_19": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_2": { + "flake": false, "locked": { - "lastModified": 1710209426, - "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", - "owner": "oxalica", - "repo": "rust-overlay", - "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", "type": "github" }, "original": { - "owner": "oxalica", - "repo": "rust-overlay", + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", "type": "github" } }, - "rust-overlay_33": { - "inputs": { - "flake-utils": "flake-utils_33", - "nixpkgs": [ - "profiles", - "hcUtils", - "hcUtils", - "hcUtils", - "nixpkgs" - ] - }, + "scaffolding_20": { + "flake": false, "locked": { - "lastModified": 1710209426, - "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", - "owner": "oxalica", - "repo": "rust-overlay", - "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", "type": "github" }, "original": { - "owner": "oxalica", - "repo": "rust-overlay", + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", "type": "github" } }, - "rust-overlay_34": { - "inputs": { - "flake-utils": "flake-utils_34", - "nixpkgs": [ - "profiles", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ] - }, + "scaffolding_21": { + "flake": false, "locked": { - "lastModified": 1710209426, - "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", - "owner": "oxalica", - "repo": "rust-overlay", - "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", "type": "github" }, "original": { - "owner": "oxalica", - "repo": "rust-overlay", + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", "type": "github" } }, - "rust-overlay_35": { - "inputs": { - "flake-utils": "flake-utils_35", - "nixpkgs": [ - "profiles", - "hcUtils", - "hcUtils", - "nixpkgs" - ] - }, + "scaffolding_22": { + "flake": false, "locked": { - "lastModified": 1710209426, - "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", - "owner": "oxalica", - "repo": "rust-overlay", - "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", "type": "github" }, "original": { - "owner": "oxalica", - "repo": "rust-overlay", + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", "type": "github" } }, - "rust-overlay_36": { - "inputs": { - "flake-utils": "flake-utils_36", - "nixpkgs": [ - "profiles", - "hcUtils", - "holochain", - "nixpkgs" - ] - }, + "scaffolding_23": { + "flake": false, "locked": { - "lastModified": 1710209426, - "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", - "owner": "oxalica", - "repo": "rust-overlay", - "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", "type": "github" }, "original": { - "owner": "oxalica", - "repo": "rust-overlay", + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", "type": "github" } }, - "rust-overlay_37": { - "inputs": { - "flake-utils": "flake-utils_37", - "nixpkgs": [ - "profiles", - "hcUtils", - "nixpkgs" - ] - }, + "scaffolding_24": { + "flake": false, "locked": { - "lastModified": 1710209426, - "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", - "owner": "oxalica", - "repo": "rust-overlay", - "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", "type": "github" }, "original": { - "owner": "oxalica", - "repo": "rust-overlay", + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", "type": "github" } }, - "rust-overlay_38": { - "inputs": { - "flake-utils": "flake-utils_38", - "nixpkgs": [ - "profiles", - "holochain", - "nixpkgs" - ] - }, + "scaffolding_25": { + "flake": false, "locked": { - "lastModified": 1710209426, - "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", - "owner": "oxalica", - "repo": "rust-overlay", - "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", "type": "github" }, "original": { - "owner": "oxalica", - "repo": "rust-overlay", + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", "type": "github" } }, - "rust-overlay_4": { - "inputs": { - "flake-utils": "flake-utils_4", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ] - }, + "scaffolding_26": { + "flake": false, "locked": { - "lastModified": 1709604635, - "narHash": "sha256-le4fwmWmjGRYWwkho0Gr7mnnZndOOe4XGbLw68OvF40=", - "owner": "oxalica", - "repo": "rust-overlay", - "rev": "e86c0fb5d3a22a5f30d7f64ecad88643fe26449d", + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", "type": "github" }, "original": { - "owner": "oxalica", - "repo": "rust-overlay", + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", "type": "github" } }, - "rust-overlay_5": { - "inputs": { - "flake-utils": "flake-utils_5", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "nixpkgs" - ] - }, + "scaffolding_27": { + "flake": false, "locked": { - "lastModified": 1709604635, - "narHash": "sha256-le4fwmWmjGRYWwkho0Gr7mnnZndOOe4XGbLw68OvF40=", - "owner": "oxalica", - "repo": "rust-overlay", - "rev": "e86c0fb5d3a22a5f30d7f64ecad88643fe26449d", + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", "type": "github" }, "original": { - "owner": "oxalica", - "repo": "rust-overlay", + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", "type": "github" } }, - "rust-overlay_6": { - "inputs": { - "flake-utils": "flake-utils_6", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ] - }, + "scaffolding_28": { + "flake": false, "locked": { - "lastModified": 1709691047, - "narHash": "sha256-2Vwx1FLufoMEcOS8KAwP8H83IP3Hw6ZPrIDHkSXrFCY=", - "owner": "oxalica", - "repo": "rust-overlay", - "rev": "d55139f3061cdf2c8f5f7bc8d49e884826e6a4ea", + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", "type": "github" }, "original": { - "owner": "oxalica", - "repo": "rust-overlay", + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", "type": "github" } }, - "rust-overlay_7": { - "inputs": { - "flake-utils": "flake-utils_7", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "nixpkgs" - ] - }, + "scaffolding_29": { + "flake": false, "locked": { - "lastModified": 1709691047, - "narHash": "sha256-2Vwx1FLufoMEcOS8KAwP8H83IP3Hw6ZPrIDHkSXrFCY=", - "owner": "oxalica", - "repo": "rust-overlay", - "rev": "d55139f3061cdf2c8f5f7bc8d49e884826e6a4ea", + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", "type": "github" }, "original": { - "owner": "oxalica", - "repo": "rust-overlay", + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", "type": "github" } }, - "rust-overlay_8": { - "inputs": { - "flake-utils": "flake-utils_8", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ] - }, + "scaffolding_3": { + "flake": false, "locked": { - "lastModified": 1709863839, - "narHash": "sha256-QpEL5FmZNi2By3sKZY55wGniFXc4wEn9PQczlE8TG0o=", - "owner": "oxalica", - "repo": "rust-overlay", - "rev": "e5ab9ee98f479081ad971473d2bc13c59e9fbc0a", + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", "type": "github" }, "original": { - "owner": "oxalica", - "repo": "rust-overlay", + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", "type": "github" } }, - "rust-overlay_9": { - "inputs": { - "flake-utils": "flake-utils_9", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "nixpkgs" - ] + "scaffolding_30": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_4": { + "flake": false, "locked": { - "lastModified": 1709863839, - "narHash": "sha256-QpEL5FmZNi2By3sKZY55wGniFXc4wEn9PQczlE8TG0o=", - "owner": "oxalica", - "repo": "rust-overlay", - "rev": "e5ab9ee98f479081ad971473d2bc13c59e9fbc0a", + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", "type": "github" }, "original": { - "owner": "oxalica", - "repo": "rust-overlay", + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", "type": "github" } }, - "scaffolding": { + "scaffolding_5": { "flake": false, "locked": { "lastModified": 1708377063, @@ -9144,7 +15027,7 @@ "type": "github" } }, - "scaffolding_10": { + "scaffolding_6": { "flake": false, "locked": { "lastModified": 1708377063, @@ -9161,7 +15044,7 @@ "type": "github" } }, - "scaffolding_11": { + "scaffolding_7": { "flake": false, "locked": { "lastModified": 1708377063, @@ -9178,7 +15061,7 @@ "type": "github" } }, - "scaffolding_12": { + "scaffolding_8": { "flake": false, "locked": { "lastModified": 1708377063, @@ -9195,7 +15078,7 @@ "type": "github" } }, - "scaffolding_13": { + "scaffolding_9": { "flake": false, "locked": { "lastModified": 1708377063, @@ -9212,245 +15095,360 @@ "type": "github" } }, - "scaffolding_14": { - "flake": false, + "service": { + "inputs": { + "hcUtils": "hcUtils_11", + "holochain": "holochain_38", + "module": "module", + "nixpkgs": [ + "service", + "holochain", + "nixpkgs" + ], + "versions": "versions_29" + }, + "locked": { + "lastModified": 1, + "narHash": "sha256-5lWQlxvoOE/aKJ7fJewi62jeNGIN3uGRiLR2BNpOFXQ=", + "path": "../service-repo", + "type": "path" + }, + "original": { + "path": "../service-repo", + "type": "path" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_10": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_11": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_12": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_13": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_14": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_15": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_16": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_17": { "locked": { - "lastModified": 1708377063, - "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", - "owner": "holochain", - "repo": "scaffolding", - "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "scaffolding", + "owner": "nix-systems", + "repo": "default", "type": "github" } }, - "scaffolding_15": { - "flake": false, + "systems_18": { "locked": { - "lastModified": 1708377063, - "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", - "owner": "holochain", - "repo": "scaffolding", - "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "scaffolding", + "owner": "nix-systems", + "repo": "default", "type": "github" } }, - "scaffolding_16": { - "flake": false, + "systems_19": { "locked": { - "lastModified": 1708377063, - "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", - "owner": "holochain", - "repo": "scaffolding", - "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "scaffolding", + "owner": "nix-systems", + "repo": "default", "type": "github" } }, - "scaffolding_17": { - "flake": false, + "systems_2": { "locked": { - "lastModified": 1708377063, - "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", - "owner": "holochain", - "repo": "scaffolding", - "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "scaffolding", + "owner": "nix-systems", + "repo": "default", "type": "github" } }, - "scaffolding_18": { - "flake": false, + "systems_20": { "locked": { - "lastModified": 1708377063, - "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", - "owner": "holochain", - "repo": "scaffolding", - "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "scaffolding", + "owner": "nix-systems", + "repo": "default", "type": "github" } }, - "scaffolding_19": { - "flake": false, + "systems_21": { "locked": { - "lastModified": 1708377063, - "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", - "owner": "holochain", - "repo": "scaffolding", - "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "scaffolding", + "owner": "nix-systems", + "repo": "default", "type": "github" } }, - "scaffolding_2": { - "flake": false, + "systems_22": { "locked": { - "lastModified": 1708377063, - "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", - "owner": "holochain", - "repo": "scaffolding", - "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "scaffolding", + "owner": "nix-systems", + "repo": "default", "type": "github" } }, - "scaffolding_3": { - "flake": false, + "systems_23": { "locked": { - "lastModified": 1708377063, - "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", - "owner": "holochain", - "repo": "scaffolding", - "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "scaffolding", + "owner": "nix-systems", + "repo": "default", "type": "github" } }, - "scaffolding_4": { - "flake": false, + "systems_24": { "locked": { - "lastModified": 1708377063, - "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", - "owner": "holochain", - "repo": "scaffolding", - "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "scaffolding", + "owner": "nix-systems", + "repo": "default", "type": "github" } }, - "scaffolding_5": { - "flake": false, + "systems_25": { "locked": { - "lastModified": 1708377063, - "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", - "owner": "holochain", - "repo": "scaffolding", - "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "scaffolding", + "owner": "nix-systems", + "repo": "default", "type": "github" } }, - "scaffolding_6": { - "flake": false, + "systems_26": { "locked": { - "lastModified": 1708377063, - "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", - "owner": "holochain", - "repo": "scaffolding", - "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "scaffolding", + "owner": "nix-systems", + "repo": "default", "type": "github" } }, - "scaffolding_7": { - "flake": false, + "systems_27": { "locked": { - "lastModified": 1708377063, - "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", - "owner": "holochain", - "repo": "scaffolding", - "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "scaffolding", + "owner": "nix-systems", + "repo": "default", "type": "github" } }, - "scaffolding_8": { - "flake": false, + "systems_28": { "locked": { - "lastModified": 1708377063, - "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", - "owner": "holochain", - "repo": "scaffolding", - "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "scaffolding", + "owner": "nix-systems", + "repo": "default", "type": "github" } }, - "scaffolding_9": { - "flake": false, + "systems_29": { "locked": { - "lastModified": 1708377063, - "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", - "owner": "holochain", - "repo": "scaffolding", - "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "scaffolding", + "owner": "nix-systems", + "repo": "default", "type": "github" } }, - "systems": { + "systems_3": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9465,7 +15463,7 @@ "type": "github" } }, - "systems_10": { + "systems_30": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9480,7 +15478,7 @@ "type": "github" } }, - "systems_11": { + "systems_31": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9495,7 +15493,7 @@ "type": "github" } }, - "systems_12": { + "systems_32": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9510,7 +15508,7 @@ "type": "github" } }, - "systems_13": { + "systems_33": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9525,7 +15523,7 @@ "type": "github" } }, - "systems_14": { + "systems_34": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9540,7 +15538,7 @@ "type": "github" } }, - "systems_15": { + "systems_35": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9555,7 +15553,7 @@ "type": "github" } }, - "systems_16": { + "systems_36": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9570,7 +15568,7 @@ "type": "github" } }, - "systems_17": { + "systems_37": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9585,7 +15583,7 @@ "type": "github" } }, - "systems_18": { + "systems_38": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9600,7 +15598,7 @@ "type": "github" } }, - "systems_19": { + "systems_39": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9615,7 +15613,7 @@ "type": "github" } }, - "systems_2": { + "systems_4": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9630,7 +15628,7 @@ "type": "github" } }, - "systems_20": { + "systems_40": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9645,7 +15643,7 @@ "type": "github" } }, - "systems_21": { + "systems_41": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9660,7 +15658,7 @@ "type": "github" } }, - "systems_22": { + "systems_42": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9675,7 +15673,7 @@ "type": "github" } }, - "systems_23": { + "systems_43": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9690,7 +15688,7 @@ "type": "github" } }, - "systems_24": { + "systems_44": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9705,7 +15703,7 @@ "type": "github" } }, - "systems_25": { + "systems_45": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9720,7 +15718,7 @@ "type": "github" } }, - "systems_26": { + "systems_46": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9735,7 +15733,7 @@ "type": "github" } }, - "systems_27": { + "systems_47": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9750,7 +15748,7 @@ "type": "github" } }, - "systems_28": { + "systems_48": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9765,7 +15763,7 @@ "type": "github" } }, - "systems_29": { + "systems_49": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9780,7 +15778,7 @@ "type": "github" } }, - "systems_3": { + "systems_5": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9795,7 +15793,7 @@ "type": "github" } }, - "systems_30": { + "systems_50": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9810,7 +15808,7 @@ "type": "github" } }, - "systems_31": { + "systems_51": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9825,7 +15823,7 @@ "type": "github" } }, - "systems_32": { + "systems_52": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9840,7 +15838,7 @@ "type": "github" } }, - "systems_33": { + "systems_53": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9855,7 +15853,7 @@ "type": "github" } }, - "systems_34": { + "systems_54": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9870,7 +15868,7 @@ "type": "github" } }, - "systems_35": { + "systems_55": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9885,7 +15883,7 @@ "type": "github" } }, - "systems_36": { + "systems_56": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9900,7 +15898,7 @@ "type": "github" } }, - "systems_37": { + "systems_57": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9915,7 +15913,7 @@ "type": "github" } }, - "systems_38": { + "systems_58": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9930,7 +15928,7 @@ "type": "github" } }, - "systems_4": { + "systems_59": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9945,7 +15943,7 @@ "type": "github" } }, - "systems_5": { + "systems_6": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -9960,7 +15958,7 @@ "type": "github" } }, - "systems_6": { + "systems_60": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -10236,11 +16234,11 @@ }, "locked": { "dir": "versions/weekly", - "lastModified": 1710225101, - "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", "owner": "holochain", "repo": "holochain", - "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", "type": "github" }, "original": { @@ -10252,18 +16250,18 @@ }, "versions_19": { "inputs": { - "holochain": "holochain_38", + "holochain": "holochain_40", "lair": "lair_19", "launcher": "launcher_19", "scaffolding": "scaffolding_19" }, "locked": { "dir": "versions/weekly", - "lastModified": 1710333296, - "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", + "lastModified": 1708595708, + "narHash": "sha256-coOhtMii+epTQobSAj1qGfVYbN9Rs0oB+Rj6ZePqKIU=", "owner": "holochain", "repo": "holochain", - "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "rev": "e2fd7138bfeb1185a245421eefb2f83d237eccef", "type": "github" }, "original": { @@ -10296,6 +16294,236 @@ "type": "github" } }, + "versions_20": { + "inputs": { + "holochain": "holochain_42", + "lair": "lair_20", + "launcher": "launcher_20", + "scaffolding": "scaffolding_20" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1709620314, + "narHash": "sha256-d7vekpj538VqdDrChFbVQpSVGDMnU1nSksbSzacKvyM=", + "owner": "holochain", + "repo": "holochain", + "rev": "392bdfd729fb6ce50f78f9e7f1c757dc392675f4", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_21": { + "inputs": { + "holochain": "holochain_44", + "lair": "lair_21", + "launcher": "launcher_21", + "scaffolding": "scaffolding_21" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1709731345, + "narHash": "sha256-YNMiQJRbnBdTQ/Q26M5zp+j2DGtpmaI/VWPVJxc4G7k=", + "owner": "holochain", + "repo": "holochain", + "rev": "3c3d2d73819e97cb9f5487d853f75a9954850f1e", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_22": { + "inputs": { + "holochain": "holochain_46", + "lair": "lair_22", + "launcher": "launcher_22", + "scaffolding": "scaffolding_22" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1709879507, + "narHash": "sha256-62ksNmQzgtsOlA6OFsdmVwUd6Me8g114DO9U4G23Ovk=", + "owner": "holochain", + "repo": "holochain", + "rev": "ef5d8cb9f6b57e208dff52ea173f13a1aaf46cce", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_23": { + "inputs": { + "holochain": "holochain_48", + "lair": "lair_23", + "launcher": "launcher_23", + "scaffolding": "scaffolding_23" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710138828, + "narHash": "sha256-MyZxoUdRrjIaiywthLfaBh2nUuvmgl8HSikKOoj9rxs=", + "owner": "holochain", + "repo": "holochain", + "rev": "5fdb77016be1925ec89cde1fffa0e9c80f9bbd92", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_24": { + "inputs": { + "holochain": "holochain_50", + "lair": "lair_24", + "launcher": "launcher_24", + "scaffolding": "scaffolding_24" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_25": { + "inputs": { + "holochain": "holochain_52", + "lair": "lair_25", + "launcher": "launcher_25", + "scaffolding": "scaffolding_25" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_26": { + "inputs": { + "holochain": "holochain_54", + "lair": "lair_26", + "launcher": "launcher_26", + "scaffolding": "scaffolding_26" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_27": { + "inputs": { + "holochain": "holochain_56", + "lair": "lair_27", + "launcher": "launcher_27", + "scaffolding": "scaffolding_27" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", + "owner": "holochain", + "repo": "holochain", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_28": { + "inputs": { + "holochain": "holochain_58", + "lair": "lair_28", + "launcher": "launcher_28", + "scaffolding": "scaffolding_28" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", + "owner": "holochain", + "repo": "holochain", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_29": { + "inputs": { + "holochain": "holochain_59", + "lair": "lair_29", + "launcher": "launcher_29", + "scaffolding": "scaffolding_29" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", + "owner": "holochain", + "repo": "holochain", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, "versions_3": { "inputs": { "holochain": "holochain_6", @@ -10319,6 +16547,29 @@ "type": "github" } }, + "versions_30": { + "inputs": { + "holochain": "holochain_60", + "lair": "lair_30", + "launcher": "launcher_30", + "scaffolding": "scaffolding_30" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", + "owner": "holochain", + "repo": "holochain", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, "versions_4": { "inputs": { "holochain": "holochain_8", diff --git a/nix/fixtures/app-repo/flake.nix b/nix/fixtures/app-repo/flake.nix index 6e570c1..bcc0441 100644 --- a/nix/fixtures/app-repo/flake.nix +++ b/nix/fixtures/app-repo/flake.nix @@ -17,7 +17,7 @@ outputs = inputs @ { ... }: let holochainSources = inputs': with inputs'; [ - profiles + service # ... and add the name of the repository here as well ]; @@ -28,7 +28,7 @@ # All holochain packages from this _and_ the upstream repositories, combined allHolochainPackages = { inputs', self' }: inputs.nixpkgs.lib.attrsets.mergeAttrsList [ self'.packages - (upstreamHolochainPackages inputs') + (upstreamHolochainPackages { inherit inputs';} ) ]; allZomes = { inputs', self' }: inputs.hcUtils.outputs.lib.filterZomes (allHolochainPackages { inherit inputs' self'; }); allDnas = { inputs', self' }: inputs.hcUtils.outputs.lib.filterDnas (allHolochainPackages { inherit inputs' self'; }); @@ -45,8 +45,7 @@ } { imports = [ - ./app/happ.nix - ./app/ui.nix + ./happ/happ.nix ]; systems = builtins.attrNames inputs.holochain.devShells; @@ -65,14 +64,14 @@ nodejs_20 # more packages go here cargo-nextest - # (inputs.hcUtils.lib.syncNpmDependenciesWithNix { - # inherit system; - # holochainPackages = upstreamNpmPackages {inherit inputs';}; - # }) + (inputs.hcUtils.lib.syncNpmDependenciesWithNix { + inherit system; + holochainPackages = upstreamNpmPackages {inherit inputs';}; + }) ]; shellHook = '' - # sync-npm-dependencies-with-nix + sync-npm-dependencies-with-nix ''; }; # packages.i = inputs'.profiles.packages.profiles_ui; diff --git a/nix/fixtures/app-repo/app/happ.nix b/nix/fixtures/app-repo/happ/happ.nix similarity index 94% rename from nix/fixtures/app-repo/app/happ.nix rename to nix/fixtures/app-repo/happ/happ.nix index 4f53aed..26a08a6 100644 --- a/nix/fixtures/app-repo/app/happ.nix +++ b/nix/fixtures/app-repo/happ/happ.nix @@ -1,8 +1,6 @@ { inputs, allDnas, ... }: { - imports = [./dna.nix]; - perSystem = { inputs' , config diff --git a/nix/fixtures/app-repo/app/happ.yaml b/nix/fixtures/app-repo/happ/happ.yaml similarity index 100% rename from nix/fixtures/app-repo/app/happ.yaml rename to nix/fixtures/app-repo/happ/happ.yaml diff --git a/nix/fixtures/app-repo/package-lock.json b/nix/fixtures/app-repo/package-lock.json index ac37328..23620a5 100644 --- a/nix/fixtures/app-repo/package-lock.json +++ b/nix/fixtures/app-repo/package-lock.json @@ -9,63 +9,40 @@ "version": "1.0.0", "license": "ISC", "workspaces": [ - "./zome/" - ], + "./ui/" + ] + }, + "../../../../../../../../../nix/store/1k1ihyngy2av5j7iqvz0k5iidaxn77z7-service/lib": { + "name": "service", + "version": "1.0.0", + "extraneous": true, + "license": "ISC", "dependencies": { - "zome": "file:/nix/store/aqjds5pi5s3vw0xjmzzlz0phkhz9y8qz-zome/lib" + "module": "file:/nix/store/rg5sgsradnp5smq8bscb76v2nl8hv9m9-module/lib" } }, - "../../../../../../../../nix/store/cywpx2ixlp41ni71wm22csz536w713k0--holochain-open-dev-profiles/lib": { - "name": "@holochain-open-dev/profiles", - "version": "0.17.2", - "license": "MIT", + "../../../../../../../../../nix/store/7bv0giyqfix1lrzsick197qb97kdhpgn-my-service/lib": { + "version": "1.0.0", + "license": "ISC", "dependencies": { - "@holochain-open-dev/elements": "^0.8.3", - "@holochain-open-dev/stores": "^0.8.11", - "@holochain-open-dev/utils": "^0.16.2", - "@holochain/client": "^0.17.0-dev.7", - "@lit/context": "^1.0.1", - "@lit/localize": "^0.12.0", - "@mdi/js": "^7.1.96", - "@shoelace-style/shoelace": "^2.11.0", - "lit": "^3.0.2" - }, - "devDependencies": { - "@custom-elements-manifest/analyzer": "^0.5.7", - "@lit/localize-tools": "^0.6.3", - "@open-wc/eslint-config": "^2.0.0", - "@types/node": "14.11.1", - "@typescript-eslint/eslint-plugin": "^5.49.0", - "@typescript-eslint/parser": "^5.49.0", - "bestzip": "^2.2.1", - "concurrently": "^5.1.0", - "deepmerge": "^3.2.0", - "eslint": "^7.1.0", - "eslint-config-prettier": "^6.11.0", - "prettier": "^2.0.4", - "tslib": "^2.0.0", - "typescript": "^4.9.0", - "vite": "^4.0.4", - "vite-plugin-checker": "^0.5.3" + "my-module": "file:/nix/store/ibnp93snzmmvyq5ar836v2h7q6mw7db3-my-module/lib" } }, - "../../../../../../../../nix/store/hqsw2yppsm6gr4jdrqmxlrdm48j1397c--holochain-open-dev-profiles-0.0.0/lib": { - "extraneous": true + "node_modules/my-app": { + "resolved": "ui", + "link": true }, - "node_modules/zome": { - "resolved": "zome", + "node_modules/my-service": { + "resolved": "../../../../../../../../../nix/store/7bv0giyqfix1lrzsick197qb97kdhpgn-my-service/lib", "link": true }, - "zome": { + "ui": { + "name": "my-app", "version": "1.0.0", "license": "ISC", "dependencies": { - "@holochain-open-dev/profiles": "file:/nix/store/cywpx2ixlp41ni71wm22csz536w713k0--holochain-open-dev-profiles/lib" + "my-service": "file:/nix/store/7bv0giyqfix1lrzsick197qb97kdhpgn-my-service/lib" } - }, - "zome/node_modules/@holochain-open-dev/profiles": { - "resolved": "../../../../../../../../nix/store/cywpx2ixlp41ni71wm22csz536w713k0--holochain-open-dev-profiles/lib", - "link": true } } } diff --git a/nix/fixtures/app-repo/package.json b/nix/fixtures/app-repo/package.json index 737accb..ba1329b 100644 --- a/nix/fixtures/app-repo/package.json +++ b/nix/fixtures/app-repo/package.json @@ -6,6 +6,6 @@ "name": "fixture", "version": "1.0.0", "workspaces": [ - "./app/" + "./ui/" ] -} +} \ No newline at end of file diff --git a/nix/fixtures/app-repo/ui/index.js b/nix/fixtures/app-repo/ui/index.js new file mode 100644 index 0000000..dcfacff --- /dev/null +++ b/nix/fixtures/app-repo/ui/index.js @@ -0,0 +1,3 @@ +import { sayHello } from 'my-service'; + +sayHello(); diff --git a/crates/replace-npm-dependencies-sources/fixture/package.json b/nix/fixtures/app-repo/ui/package.json similarity index 69% rename from crates/replace-npm-dependencies-sources/fixture/package.json rename to nix/fixtures/app-repo/ui/package.json index aed5c20..d2cb726 100644 --- a/crates/replace-npm-dependencies-sources/fixture/package.json +++ b/nix/fixtures/app-repo/ui/package.json @@ -1,17 +1,17 @@ { + "name": "my-app", "author": "", + "scripts": { + "build": "", + "start": "node index.js" + }, "dependencies": { - "@holochain-open-dev/profiles": "2221" + "my-service": "file:/nix/store/7bv0giyqfix1lrzsick197qb97kdhpgn-my-service/lib" }, "description": "", "keywords": [], "license": "ISC", "main": "index.js", - "name": "zome", - "scripts": { - "build": "", - "start": "node index.js" - }, "type": "module", "version": "1.0.0" } \ No newline at end of file diff --git a/nix/fixtures/module-repo/flake.lock b/nix/fixtures/module-repo/flake.lock index 3a64011..7bc61a7 100644 --- a/nix/fixtures/module-repo/flake.lock +++ b/nix/fixtures/module-repo/flake.lock @@ -34,6 +34,159 @@ "type": "github" } }, + "cargo-chef_11": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_12": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_13": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_14": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_15": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_16": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_17": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_18": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, + "cargo-chef_19": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, "cargo-chef_2": { "flake": false, "locked": { @@ -204,7 +357,7 @@ "type": "github" } }, - "cargo-rdme_2": { + "cargo-rdme_11": { "flake": false, "locked": { "lastModified": 1675118998, @@ -221,7 +374,7 @@ "type": "github" } }, - "cargo-rdme_3": { + "cargo-rdme_12": { "flake": false, "locked": { "lastModified": 1675118998, @@ -238,7 +391,7 @@ "type": "github" } }, - "cargo-rdme_4": { + "cargo-rdme_13": { "flake": false, "locked": { "lastModified": 1675118998, @@ -255,7 +408,7 @@ "type": "github" } }, - "cargo-rdme_5": { + "cargo-rdme_14": { "flake": false, "locked": { "lastModified": 1675118998, @@ -272,7 +425,7 @@ "type": "github" } }, - "cargo-rdme_6": { + "cargo-rdme_15": { "flake": false, "locked": { "lastModified": 1675118998, @@ -289,7 +442,7 @@ "type": "github" } }, - "cargo-rdme_7": { + "cargo-rdme_16": { "flake": false, "locked": { "lastModified": 1675118998, @@ -306,7 +459,7 @@ "type": "github" } }, - "cargo-rdme_8": { + "cargo-rdme_17": { "flake": false, "locked": { "lastModified": 1675118998, @@ -323,7 +476,7 @@ "type": "github" } }, - "cargo-rdme_9": { + "cargo-rdme_18": { "flake": false, "locked": { "lastModified": 1675118998, @@ -340,99 +493,252 @@ "type": "github" } }, - "crane": { - "inputs": { - "nixpkgs": "nixpkgs" - }, + "cargo-rdme_19": { + "flake": false, "locked": { - "lastModified": 1710003968, - "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", - "owner": "ipetkov", - "repo": "crane", - "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", "type": "github" }, "original": { - "owner": "ipetkov", - "repo": "crane", + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", "type": "github" } }, - "crane_10": { - "inputs": { - "nixpkgs": "nixpkgs_10" - }, + "cargo-rdme_2": { + "flake": false, "locked": { - "lastModified": 1708560786, - "narHash": "sha256-gcTA/iq9mfrwGPQsoxVryWhCAgBwL2GJLGO/s06/0wY=", - "owner": "ipetkov", - "repo": "crane", - "rev": "9a5972e2e8d0b1716cc4e42af8b75eca6914fbff", + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", "type": "github" }, "original": { - "owner": "ipetkov", - "repo": "crane", + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", "type": "github" } }, - "crane_11": { - "inputs": { - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ] - }, + "cargo-rdme_3": { + "flake": false, "locked": { - "lastModified": 1707363936, - "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", - "owner": "ipetkov", - "repo": "crane", - "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", "type": "github" }, "original": { - "owner": "ipetkov", - "repo": "crane", + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", "type": "github" } }, - "crane_12": { - "inputs": { - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ] - }, + "cargo-rdme_4": { + "flake": false, "locked": { - "lastModified": 1707363936, - "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", - "owner": "ipetkov", - "repo": "crane", - "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", "type": "github" }, "original": { - "owner": "ipetkov", - "repo": "crane", - "type": "github" + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_5": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_6": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_7": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_8": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "cargo-rdme_9": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, + "crane": { + "inputs": { + "nixpkgs": "nixpkgs" + }, + "locked": { + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", + "owner": "ipetkov", + "repo": "crane", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_10": { + "inputs": { + "nixpkgs": "nixpkgs_10" + }, + "locked": { + "lastModified": 1708560786, + "narHash": "sha256-gcTA/iq9mfrwGPQsoxVryWhCAgBwL2GJLGO/s06/0wY=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9a5972e2e8d0b1716cc4e42af8b75eca6914fbff", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_11": { + "inputs": { + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_12": { + "inputs": { + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" } }, "crane_13": { @@ -649,9 +955,9 @@ "type": "github" } }, - "crane_3": { + "crane_21": { "inputs": { - "nixpkgs": "nixpkgs_3" + "nixpkgs": "nixpkgs_22" }, "locked": { "lastModified": 1710003968, @@ -667,9 +973,9 @@ "type": "github" } }, - "crane_4": { + "crane_22": { "inputs": { - "nixpkgs": "nixpkgs_4" + "nixpkgs": "nixpkgs_23" }, "locked": { "lastModified": 1710003968, @@ -685,9 +991,9 @@ "type": "github" } }, - "crane_5": { + "crane_23": { "inputs": { - "nixpkgs": "nixpkgs_5" + "nixpkgs": "nixpkgs_24" }, "locked": { "lastModified": 1710003968, @@ -703,9 +1009,27 @@ "type": "github" } }, - "crane_6": { + "crane_24": { "inputs": { - "nixpkgs": "nixpkgs_6" + "nixpkgs": "nixpkgs_25" + }, + "locked": { + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", + "owner": "ipetkov", + "repo": "crane", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_25": { + "inputs": { + "nixpkgs": "nixpkgs_26" }, "locked": { "lastModified": 1709610799, @@ -721,9 +1045,9 @@ "type": "github" } }, - "crane_7": { + "crane_26": { "inputs": { - "nixpkgs": "nixpkgs_7" + "nixpkgs": "nixpkgs_27" }, "locked": { "lastModified": 1709610799, @@ -739,9 +1063,9 @@ "type": "github" } }, - "crane_8": { + "crane_27": { "inputs": { - "nixpkgs": "nixpkgs_8" + "nixpkgs": "nixpkgs_28" }, "locked": { "lastModified": 1709610799, @@ -757,9 +1081,9 @@ "type": "github" } }, - "crane_9": { + "crane_28": { "inputs": { - "nixpkgs": "nixpkgs_9" + "nixpkgs": "nixpkgs_29" }, "locked": { "lastModified": 1708560786, @@ -775,3496 +1099,7519 @@ "type": "github" } }, - "crate2nix": { - "flake": false, + "crane_29": { + "inputs": { + "nixpkgs": "nixpkgs_30" + }, "locked": { - "lastModified": 1706909251, - "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", - "owner": "kolloch", - "repo": "crate2nix", - "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "lastModified": 1708560786, + "narHash": "sha256-gcTA/iq9mfrwGPQsoxVryWhCAgBwL2GJLGO/s06/0wY=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9a5972e2e8d0b1716cc4e42af8b75eca6914fbff", "type": "github" }, "original": { - "owner": "kolloch", - "repo": "crate2nix", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "crate2nix_10": { - "flake": false, + "crane_3": { + "inputs": { + "nixpkgs": "nixpkgs_3" + }, "locked": { - "lastModified": 1706909251, - "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", - "owner": "kolloch", - "repo": "crate2nix", - "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", + "owner": "ipetkov", + "repo": "crane", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", "type": "github" }, "original": { - "owner": "kolloch", - "repo": "crate2nix", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "crate2nix_2": { - "flake": false, - "locked": { - "lastModified": 1706909251, - "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", - "owner": "kolloch", - "repo": "crate2nix", - "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "crane_30": { + "inputs": { + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", "type": "github" }, "original": { - "owner": "kolloch", - "repo": "crate2nix", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "crate2nix_3": { - "flake": false, + "crane_31": { + "inputs": { + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1706909251, - "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", - "owner": "kolloch", - "repo": "crate2nix", - "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", "type": "github" }, "original": { - "owner": "kolloch", - "repo": "crate2nix", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "crate2nix_4": { - "flake": false, + "crane_32": { + "inputs": { + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1706909251, - "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", - "owner": "kolloch", - "repo": "crate2nix", - "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", "type": "github" }, "original": { - "owner": "kolloch", - "repo": "crate2nix", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "crate2nix_5": { - "flake": false, + "crane_33": { + "inputs": { + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1706909251, - "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", - "owner": "kolloch", - "repo": "crate2nix", - "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", "type": "github" }, "original": { - "owner": "kolloch", - "repo": "crate2nix", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "crate2nix_6": { - "flake": false, + "crane_34": { + "inputs": { + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1706909251, - "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", - "owner": "kolloch", - "repo": "crate2nix", - "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", "type": "github" }, "original": { - "owner": "kolloch", - "repo": "crate2nix", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "crate2nix_7": { - "flake": false, + "crane_35": { + "inputs": { + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1706909251, - "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", - "owner": "kolloch", - "repo": "crate2nix", - "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", "type": "github" }, "original": { - "owner": "kolloch", - "repo": "crate2nix", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "crate2nix_8": { - "flake": false, + "crane_36": { + "inputs": { + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1706909251, - "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", - "owner": "kolloch", - "repo": "crate2nix", - "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", "type": "github" }, "original": { - "owner": "kolloch", - "repo": "crate2nix", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "crate2nix_9": { - "flake": false, + "crane_37": { + "inputs": { + "nixpkgs": [ + "profiles", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1706909251, - "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", - "owner": "kolloch", - "repo": "crate2nix", - "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", "type": "github" }, "original": { - "owner": "kolloch", - "repo": "crate2nix", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "empty": { - "flake": false, + "crane_38": { + "inputs": { + "nixpkgs": [ + "profiles", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "empty_10": { - "flake": false, + "crane_4": { + "inputs": { + "nixpkgs": "nixpkgs_4" + }, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", + "owner": "ipetkov", + "repo": "crane", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "empty_2": { - "flake": false, - "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "crane_5": { + "inputs": { + "nixpkgs": "nixpkgs_5" + }, + "locked": { + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", + "owner": "ipetkov", + "repo": "crane", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "empty_3": { - "flake": false, + "crane_6": { + "inputs": { + "nixpkgs": "nixpkgs_6" + }, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1709610799, + "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", + "owner": "ipetkov", + "repo": "crane", + "rev": "81c393c776d5379c030607866afef6406ca1be57", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "empty_4": { - "flake": false, + "crane_7": { + "inputs": { + "nixpkgs": "nixpkgs_7" + }, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1709610799, + "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", + "owner": "ipetkov", + "repo": "crane", + "rev": "81c393c776d5379c030607866afef6406ca1be57", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "empty_5": { - "flake": false, + "crane_8": { + "inputs": { + "nixpkgs": "nixpkgs_8" + }, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1709610799, + "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", + "owner": "ipetkov", + "repo": "crane", + "rev": "81c393c776d5379c030607866afef6406ca1be57", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "empty_6": { - "flake": false, + "crane_9": { + "inputs": { + "nixpkgs": "nixpkgs_9" + }, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1708560786, + "narHash": "sha256-gcTA/iq9mfrwGPQsoxVryWhCAgBwL2GJLGO/s06/0wY=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9a5972e2e8d0b1716cc4e42af8b75eca6914fbff", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "ipetkov", + "repo": "crane", "type": "github" } }, - "empty_7": { + "crate2nix": { "flake": false, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "empty_8": { + "crate2nix_10": { "flake": false, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "empty_9": { + "crate2nix_11": { "flake": false, "locked": { - "lastModified": 1683792623, - "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", - "owner": "steveej", - "repo": "empty", - "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "steveej", - "repo": "empty", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "flake-compat": { + "crate2nix_12": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "flake-compat_10": { + "crate2nix_13": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "flake-compat_2": { + "crate2nix_14": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "flake-compat_3": { + "crate2nix_15": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "flake-compat_4": { + "crate2nix_16": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "flake-compat_5": { + "crate2nix_17": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "flake-compat_6": { + "crate2nix_18": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "flake-compat_7": { + "crate2nix_19": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "flake-compat_8": { + "crate2nix_2": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "flake-compat_9": { + "crate2nix_3": { "flake": false, "locked": { - "lastModified": 1696426674, - "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", - "owner": "edolstra", - "repo": "flake-compat", - "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "owner": "edolstra", - "repo": "flake-compat", + "owner": "kolloch", + "repo": "crate2nix", "type": "github" } }, - "flake-parts": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib" - }, + "crate2nix_4": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" } }, - "flake-parts_10": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_10" - }, + "crate2nix_5": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" } }, - "flake-parts_2": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_2" - }, + "crate2nix_6": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" } }, - "flake-parts_3": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_3" - }, + "crate2nix_7": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" } }, - "flake-parts_4": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_4" - }, + "crate2nix_8": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" } }, - "flake-parts_5": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_5" - }, + "crate2nix_9": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" } }, - "flake-parts_6": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_6" - }, + "empty": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "steveej", + "repo": "empty", + "type": "github" } }, - "flake-parts_7": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_7" - }, + "empty_10": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "steveej", + "repo": "empty", + "type": "github" } }, - "flake-parts_8": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_8" - }, + "empty_11": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "steveej", + "repo": "empty", + "type": "github" } }, - "flake-parts_9": { - "inputs": { - "nixpkgs-lib": "nixpkgs-lib_9" - }, + "empty_12": { + "flake": false, "locked": { - "lastModified": 1706830856, - "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", - "owner": "hercules-ci", - "repo": "flake-parts", - "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "id": "flake-parts", - "type": "indirect" + "owner": "steveej", + "repo": "empty", + "type": "github" } }, - "flake-utils": { - "inputs": { - "systems": "systems" - }, + "empty_13": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-utils_10": { - "inputs": { - "systems": "systems_10" - }, + "empty_14": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-utils_11": { - "inputs": { - "systems": "systems_11" - }, + "empty_15": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-utils_12": { - "inputs": { - "systems": "systems_12" - }, + "empty_16": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-utils_13": { - "inputs": { - "systems": "systems_13" - }, + "empty_17": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-utils_14": { - "inputs": { - "systems": "systems_14" - }, + "empty_18": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-utils_15": { - "inputs": { - "systems": "systems_15" - }, + "empty_19": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-utils_16": { - "inputs": { - "systems": "systems_16" - }, + "empty_2": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-utils_17": { - "inputs": { - "systems": "systems_17" - }, + "empty_3": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-utils_18": { - "inputs": { - "systems": "systems_18" - }, + "empty_4": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-utils_19": { - "inputs": { - "systems": "systems_19" - }, + "empty_5": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-utils_2": { - "inputs": { - "systems": "systems_2" - }, + "empty_6": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-utils_20": { - "inputs": { - "systems": "systems_20" - }, + "empty_7": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-utils_3": { - "inputs": { - "systems": "systems_3" - }, + "empty_8": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-utils_4": { - "inputs": { - "systems": "systems_4" - }, + "empty_9": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "steveej", + "repo": "empty", "type": "github" } }, - "flake-utils_5": { - "inputs": { - "systems": "systems_5" - }, + "flake-compat": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_6": { - "inputs": { - "systems": "systems_6" - }, + "flake-compat_10": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_7": { - "inputs": { - "systems": "systems_7" - }, + "flake-compat_11": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_8": { - "inputs": { - "systems": "systems_8" - }, + "flake-compat_12": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "flake-utils_9": { - "inputs": { - "systems": "systems_9" - }, + "flake-compat_13": { + "flake": false, "locked": { - "lastModified": 1705309234, - "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "numtide", - "repo": "flake-utils", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "hcUtils": { - "inputs": { - "crane": "crane", - "hcUtils": "hcUtils_2", - "holochain": "holochain_17", - "nixpkgs": [ - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_19", - "versions": "versions_9" - }, + "flake-compat_14": { + "flake": false, "locked": { - "lastModified": 0, - "narHash": "sha256-ZSsHolRkd2gllyPnZRI9iu7MP+6aSuf0Z+jyo2zDK0U=", - "path": "../../..", - "type": "path" + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" }, "original": { - "path": "../../..", - "type": "path" + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" } }, - "hcUtils_10": { - "inputs": { - "crane": "crane_10", - "nixpkgs": "nixpkgs_11", - "rust-overlay": "rust-overlay" - }, + "flake-compat_15": { + "flake": false, "locked": { - "lastModified": 1708609246, - "narHash": "sha256-8C5Nf84Sw3vutYxACA+N1Mc+QC06SddHzA1mjls/v8w=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "e7e9cfca683aaa78dfa7959bff7b1af91aa6651b", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "hcUtils_2": { - "inputs": { - "crane": "crane_2", - "hcUtils": "hcUtils_3", - "holochain": "holochain_15", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_17", - "versions": "versions_8" - }, + "flake-compat_16": { + "flake": false, "locked": { - "lastModified": 1710328673, - "narHash": "sha256-qA1IzSbEsgd+QLOegEK8I6Frk1ryX/iFB1vXw/NYRvs=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "c80094cb97c3a01e31e59773b6b2e53990191460", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "hcUtils_3": { - "inputs": { - "crane": "crane_3", - "hcUtils": "hcUtils_4", - "holochain": "holochain_13", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_15", - "versions": "versions_7" - }, + "flake-compat_17": { + "flake": false, "locked": { - "lastModified": 1710259503, - "narHash": "sha256-GKjKaY3L1WCWLx6zHcR6EvR2JKCABpIbrGnuZcbEEPk=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "7503e467f55425cfa802f33cafcb53d6011417b7", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "hcUtils_4": { - "inputs": { - "crane": "crane_4", - "hcUtils": "hcUtils_5", - "holochain": "holochain_11", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_13", - "versions": "versions_6" - }, + "flake-compat_18": { + "flake": false, "locked": { - "lastModified": 1710259052, - "narHash": "sha256-L5u7wJDtKR/DfaS0tqUJymEimkwzTItmgkRug/q+qM4=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "1c569cb148d3cc33c18e55aca5e99032166d8bb0", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "hcUtils_5": { - "inputs": { - "crane": "crane_5", - "hcUtils": "hcUtils_6", - "holochain": "holochain_9", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_11", - "versions": "versions_5" - }, + "flake-compat_19": { + "flake": false, "locked": { - "lastModified": 1710170526, - "narHash": "sha256-8SMfoPrMF0nXBmN+k9Ckxy/1VFB7GWMX+ZWPQUl/ylM=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "8ae6c8817918006f25f0e38c0351809e23328df8", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "hcUtils_6": { - "inputs": { - "crane": "crane_6", - "hcUtils": "hcUtils_7", - "holochain": "holochain_7", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_9", - "versions": "versions_4" + "flake-compat_2": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_3": { + "flake": false, "locked": { - "lastModified": 1709938899, - "narHash": "sha256-1cojwgfN0Ey5eRyrlD5DktbraaFGK0LNv8LyZuQhBlc=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "528c55a03bec665e4f44e8b45f4b9d03ea9d9471", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "hcUtils_7": { - "inputs": { - "crane": "crane_7", - "hcUtils": "hcUtils_8", - "holochain": "holochain_5", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_7", - "versions": "versions_3" + "flake-compat_4": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_5": { + "flake": false, "locked": { - "lastModified": 1709847264, - "narHash": "sha256-209E9O8Ck/2fHMkjLVQ7/RlDfQtHJRh/vP+B8jFDQHE=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "5b8365d3a970df9038a4518dee76c0e40a5de813", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "hcUtils_8": { - "inputs": { - "crane": "crane_8", - "hcUtils": "hcUtils_9", - "holochain": "holochain_3", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_5", - "versions": "versions_2" + "flake-compat_6": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_7": { + "flake": false, "locked": { - "lastModified": 1709743154, - "narHash": "sha256-M16V2rHCdfTW9aot1XeMxWpmIs0axH2FbFpmsbBY5ZY=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "282b7ab81a5755e8c41982766caecb6663c63c2d", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "hcUtils_9": { - "inputs": { - "crane": "crane_9", - "hcUtils": "hcUtils_10", - "holochain": "holochain", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "nixpkgs" - ], - "rust-overlay": "rust-overlay_3", - "versions": "versions" + "flake-compat_8": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, + "flake-compat_9": { + "flake": false, "locked": { - "lastModified": 1709649392, - "narHash": "sha256-X3ijMZFXDu2V2Wko1jFO8oovqbilGUj5U77WNiP+jvE=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "546c3c654904e1bd859dea39960475fef4c7924b", + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "repo": "common", + "owner": "edolstra", + "repo": "flake-compat", "type": "github" } }, - "holochain": { + "flake-parts": { "inputs": { - "cargo-chef": "cargo-chef", - "cargo-rdme": "cargo-rdme", - "crane": "crane_11", - "crate2nix": "crate2nix", - "empty": "empty", - "flake-compat": "flake-compat", - "flake-parts": "flake-parts", - "holochain": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter", - "nixpkgs": "nixpkgs_12", - "pre-commit-hooks-nix": "pre-commit-hooks-nix", - "repo-git": "repo-git", - "rust-overlay": "rust-overlay_2", - "scaffolding": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "versions" - ] + "nixpkgs-lib": "nixpkgs-lib" }, "locked": { - "lastModified": 1708595708, - "narHash": "sha256-coOhtMii+epTQobSAj1qGfVYbN9Rs0oB+Rj6ZePqKIU=", - "owner": "holochain", - "repo": "holochain", - "rev": "e2fd7138bfeb1185a245421eefb2f83d237eccef", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "holochain_10": { - "flake": false, + "flake-parts_10": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_10" + }, "locked": { - "lastModified": 1709687030, - "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", - "owner": "holochain", - "repo": "holochain", - "rev": "cb671524080332983281baa2db7c1851344e79d2", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.39", - "repo": "holochain", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "holochain_11": { + "flake-parts_11": { "inputs": { - "cargo-chef": "cargo-chef_6", - "cargo-rdme": "cargo-rdme_6", - "crane": "crane_16", - "crate2nix": "crate2nix_6", - "empty": "empty_6", - "flake-compat": "flake-compat_6", - "flake-parts": "flake-parts_6", - "holochain": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_6", - "nixpkgs": "nixpkgs_17", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_6", - "repo-git": "repo-git_6", - "rust-overlay": "rust-overlay_12", - "scaffolding": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "versions" - ] + "nixpkgs-lib": "nixpkgs-lib_11" }, "locked": { - "lastModified": 1710225101, - "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", - "owner": "holochain", - "repo": "holochain", - "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "holochain_12": { - "flake": false, + "flake-parts_12": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_12" + }, "locked": { - "lastModified": 1709687030, - "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", - "owner": "holochain", - "repo": "holochain", - "rev": "cb671524080332983281baa2db7c1851344e79d2", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.39", - "repo": "holochain", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "holochain_13": { + "flake-parts_13": { "inputs": { - "cargo-chef": "cargo-chef_7", - "cargo-rdme": "cargo-rdme_7", - "crane": "crane_17", - "crate2nix": "crate2nix_7", - "empty": "empty_7", - "flake-compat": "flake-compat_7", - "flake-parts": "flake-parts_7", - "holochain": [ - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_7", - "nixpkgs": "nixpkgs_18", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_7", - "repo-git": "repo-git_7", - "rust-overlay": "rust-overlay_14", - "scaffolding": [ - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "hcUtils", - "hcUtils", - "hcUtils", - "versions" - ] + "nixpkgs-lib": "nixpkgs-lib_13" }, "locked": { - "lastModified": 1710225101, - "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", - "owner": "holochain", - "repo": "holochain", - "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "holochain_14": { - "flake": false, + "flake-parts_14": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_14" + }, "locked": { - "lastModified": 1709687030, - "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", - "owner": "holochain", - "repo": "holochain", - "rev": "cb671524080332983281baa2db7c1851344e79d2", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.39", - "repo": "holochain", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "holochain_15": { + "flake-parts_15": { "inputs": { - "cargo-chef": "cargo-chef_8", - "cargo-rdme": "cargo-rdme_8", - "crane": "crane_18", - "crate2nix": "crate2nix_8", - "empty": "empty_8", - "flake-compat": "flake-compat_8", - "flake-parts": "flake-parts_8", - "holochain": [ - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_8", - "nixpkgs": "nixpkgs_19", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_8", - "repo-git": "repo-git_8", - "rust-overlay": "rust-overlay_16", - "scaffolding": [ - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "hcUtils", - "hcUtils", - "versions" - ] + "nixpkgs-lib": "nixpkgs-lib_15" }, "locked": { - "lastModified": 1710225101, - "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", - "owner": "holochain", - "repo": "holochain", - "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "holochain_16": { - "flake": false, + "flake-parts_16": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_16" + }, "locked": { - "lastModified": 1709687030, - "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", - "owner": "holochain", - "repo": "holochain", - "rev": "cb671524080332983281baa2db7c1851344e79d2", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.39", - "repo": "holochain", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "holochain_17": { + "flake-parts_17": { "inputs": { - "cargo-chef": "cargo-chef_9", - "cargo-rdme": "cargo-rdme_9", - "crane": "crane_19", - "crate2nix": "crate2nix_9", - "empty": "empty_9", - "flake-compat": "flake-compat_9", - "flake-parts": "flake-parts_9", - "holochain": [ - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_9", - "nixpkgs": "nixpkgs_20", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_9", - "repo-git": "repo-git_9", - "rust-overlay": "rust-overlay_18", - "scaffolding": [ - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "hcUtils", - "versions" - ] + "nixpkgs-lib": "nixpkgs-lib_17" }, "locked": { - "lastModified": 1710333296, - "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", - "owner": "holochain", - "repo": "holochain", - "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "holochain_18": { - "flake": false, + "flake-parts_18": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_18" + }, "locked": { - "lastModified": 1709687030, - "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", - "owner": "holochain", - "repo": "holochain", - "rev": "cb671524080332983281baa2db7c1851344e79d2", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.39", - "repo": "holochain", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "holochain_19": { + "flake-parts_19": { "inputs": { - "cargo-chef": "cargo-chef_10", - "cargo-rdme": "cargo-rdme_10", - "crane": "crane_20", - "crate2nix": "crate2nix_10", - "empty": "empty_10", - "flake-compat": "flake-compat_10", - "flake-parts": "flake-parts_10", - "holochain": [ - "holochain", - "empty" - ], - "lair": [ - "holochain", - "empty" - ], - "launcher": [ - "holochain", - "empty" - ], - "nix-filter": "nix-filter_10", - "nixpkgs": "nixpkgs_21", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_10", - "repo-git": "repo-git_10", - "rust-overlay": "rust-overlay_20", - "scaffolding": [ - "holochain", - "empty" - ], - "versions": [ - "versions" - ] + "nixpkgs-lib": "nixpkgs-lib_19" }, "locked": { - "lastModified": 1710333296, - "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", - "owner": "holochain", - "repo": "holochain", - "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "holochain_2": { - "flake": false, + "flake-parts_2": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_2" + }, "locked": { - "lastModified": 1707871925, - "narHash": "sha256-LmDAQT21zXXgDl/68ERyCerAWCym7aKECnXsnyLcmXw=", - "owner": "holochain", - "repo": "holochain", - "rev": "2f3c8dce79586aad6f67d3428bf56d868303f956", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.37", - "repo": "holochain", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "holochain_20": { - "flake": false, + "flake-parts_3": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_3" + }, "locked": { - "lastModified": 1709687030, - "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", - "owner": "holochain", - "repo": "holochain", - "rev": "cb671524080332983281baa2db7c1851344e79d2", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.39", - "repo": "holochain", - "type": "github" + "id": "flake-parts", + "type": "indirect" } }, - "holochain_3": { + "flake-parts_4": { "inputs": { - "cargo-chef": "cargo-chef_2", - "cargo-rdme": "cargo-rdme_2", - "crane": "crane_12", - "crate2nix": "crate2nix_2", - "empty": "empty_2", - "flake-compat": "flake-compat_2", - "flake-parts": "flake-parts_2", - "holochain": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_2", - "nixpkgs": "nixpkgs_13", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_2", - "repo-git": "repo-git_2", - "rust-overlay": "rust-overlay_4", - "scaffolding": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "versions" - ] + "nixpkgs-lib": "nixpkgs-lib_4" }, "locked": { - "lastModified": 1709620314, - "narHash": "sha256-d7vekpj538VqdDrChFbVQpSVGDMnU1nSksbSzacKvyM=", - "owner": "holochain", - "repo": "holochain", - "rev": "392bdfd729fb6ce50f78f9e7f1c757dc392675f4", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_5": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_5" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" } }, - "holochain_4": { - "flake": false, + "flake-parts_6": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_6" + }, "locked": { - "lastModified": 1709081329, - "narHash": "sha256-QP7WKySgEFbgNaSc7BNBBOWCVKuycXSp4HAfD4GTug8=", - "owner": "holochain", - "repo": "holochain", - "rev": "547c63a442e61be805887b644c78cf6f970d631b", + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.38", - "repo": "holochain", + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_7": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_7" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" } }, - "holochain_5": { + "flake-parts_8": { "inputs": { - "cargo-chef": "cargo-chef_3", - "cargo-rdme": "cargo-rdme_3", - "crane": "crane_13", - "crate2nix": "crate2nix_3", - "empty": "empty_3", - "flake-compat": "flake-compat_3", - "flake-parts": "flake-parts_3", - "holochain": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_3", - "nixpkgs": "nixpkgs_14", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_3", - "repo-git": "repo-git_3", - "rust-overlay": "rust-overlay_6", - "scaffolding": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "versions" - ] + "nixpkgs-lib": "nixpkgs-lib_8" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-parts_9": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_9" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, + "flake-utils": { + "inputs": { + "systems": "systems" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_10": { + "inputs": { + "systems": "systems_10" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_11": { + "inputs": { + "systems": "systems_11" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_12": { + "inputs": { + "systems": "systems_12" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_13": { + "inputs": { + "systems": "systems_13" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_14": { + "inputs": { + "systems": "systems_14" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_15": { + "inputs": { + "systems": "systems_15" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_16": { + "inputs": { + "systems": "systems_16" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_17": { + "inputs": { + "systems": "systems_17" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_18": { + "inputs": { + "systems": "systems_18" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_19": { + "inputs": { + "systems": "systems_19" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_2": { + "inputs": { + "systems": "systems_2" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_20": { + "inputs": { + "systems": "systems_20" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_21": { + "inputs": { + "systems": "systems_21" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_22": { + "inputs": { + "systems": "systems_22" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_23": { + "inputs": { + "systems": "systems_23" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_24": { + "inputs": { + "systems": "systems_24" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_25": { + "inputs": { + "systems": "systems_25" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_26": { + "inputs": { + "systems": "systems_26" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_27": { + "inputs": { + "systems": "systems_27" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_28": { + "inputs": { + "systems": "systems_28" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_29": { + "inputs": { + "systems": "systems_29" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_3": { + "inputs": { + "systems": "systems_3" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_30": { + "inputs": { + "systems": "systems_30" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_31": { + "inputs": { + "systems": "systems_31" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_32": { + "inputs": { + "systems": "systems_32" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_33": { + "inputs": { + "systems": "systems_33" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_34": { + "inputs": { + "systems": "systems_34" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_35": { + "inputs": { + "systems": "systems_35" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_36": { + "inputs": { + "systems": "systems_36" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_37": { + "inputs": { + "systems": "systems_37" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_38": { + "inputs": { + "systems": "systems_38" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_4": { + "inputs": { + "systems": "systems_4" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_5": { + "inputs": { + "systems": "systems_5" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_6": { + "inputs": { + "systems": "systems_6" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_7": { + "inputs": { + "systems": "systems_7" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_8": { + "inputs": { + "systems": "systems_8" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "flake-utils_9": { + "inputs": { + "systems": "systems_9" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, + "hcUtils": { + "inputs": { + "crane": "crane", + "hcUtils": "hcUtils_2", + "holochain": "holochain_17", + "nixpkgs": [ + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_19", + "versions": "versions_9" + }, + "locked": { + "lastModified": 0, + "narHash": "sha256-QHm71z1vc4sgQhv1PCTY93LYyIL6N9wFqb9v/wwz7MA=", + "path": "../../..", + "type": "path" + }, + "original": { + "path": "../../..", + "type": "path" + } + }, + "hcUtils_10": { + "inputs": { + "crane": "crane_10", + "nixpkgs": "nixpkgs_11", + "rust-overlay": "rust-overlay" + }, + "locked": { + "lastModified": 1708609246, + "narHash": "sha256-8C5Nf84Sw3vutYxACA+N1Mc+QC06SddHzA1mjls/v8w=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "e7e9cfca683aaa78dfa7959bff7b1af91aa6651b", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_11": { + "inputs": { + "crane": "crane_21", + "hcUtils": "hcUtils_12", + "holochain": "holochain_34", + "nixpkgs": [ + "profiles", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_37", + "versions": "versions_17" + }, + "locked": { + "lastModified": 1710327853, + "narHash": "sha256-6MEyrHRBq72i+cCXHUFgODLHhYvBfyayYaH1KoXKLl0=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "f334cbf1e9161a2f0b5401f808267100250d3aa6", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_12": { + "inputs": { + "crane": "crane_22", + "hcUtils": "hcUtils_13", + "holochain": "holochain_32", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_35", + "versions": "versions_16" + }, + "locked": { + "lastModified": 1710259503, + "narHash": "sha256-GKjKaY3L1WCWLx6zHcR6EvR2JKCABpIbrGnuZcbEEPk=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "7503e467f55425cfa802f33cafcb53d6011417b7", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_13": { + "inputs": { + "crane": "crane_23", + "hcUtils": "hcUtils_14", + "holochain": "holochain_30", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_33", + "versions": "versions_15" + }, + "locked": { + "lastModified": 1710259052, + "narHash": "sha256-L5u7wJDtKR/DfaS0tqUJymEimkwzTItmgkRug/q+qM4=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "1c569cb148d3cc33c18e55aca5e99032166d8bb0", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_14": { + "inputs": { + "crane": "crane_24", + "hcUtils": "hcUtils_15", + "holochain": "holochain_28", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_31", + "versions": "versions_14" + }, + "locked": { + "lastModified": 1710170526, + "narHash": "sha256-8SMfoPrMF0nXBmN+k9Ckxy/1VFB7GWMX+ZWPQUl/ylM=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "8ae6c8817918006f25f0e38c0351809e23328df8", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_15": { + "inputs": { + "crane": "crane_25", + "hcUtils": "hcUtils_16", + "holochain": "holochain_26", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_29", + "versions": "versions_13" + }, + "locked": { + "lastModified": 1709938899, + "narHash": "sha256-1cojwgfN0Ey5eRyrlD5DktbraaFGK0LNv8LyZuQhBlc=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "528c55a03bec665e4f44e8b45f4b9d03ea9d9471", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_16": { + "inputs": { + "crane": "crane_26", + "hcUtils": "hcUtils_17", + "holochain": "holochain_24", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_27", + "versions": "versions_12" + }, + "locked": { + "lastModified": 1709847264, + "narHash": "sha256-209E9O8Ck/2fHMkjLVQ7/RlDfQtHJRh/vP+B8jFDQHE=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "5b8365d3a970df9038a4518dee76c0e40a5de813", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_17": { + "inputs": { + "crane": "crane_27", + "hcUtils": "hcUtils_18", + "holochain": "holochain_22", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_25", + "versions": "versions_11" + }, + "locked": { + "lastModified": 1709743154, + "narHash": "sha256-M16V2rHCdfTW9aot1XeMxWpmIs0axH2FbFpmsbBY5ZY=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "282b7ab81a5755e8c41982766caecb6663c63c2d", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_18": { + "inputs": { + "crane": "crane_28", + "hcUtils": "hcUtils_19", + "holochain": "holochain_20", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_23", + "versions": "versions_10" + }, + "locked": { + "lastModified": 1709649392, + "narHash": "sha256-X3ijMZFXDu2V2Wko1jFO8oovqbilGUj5U77WNiP+jvE=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "546c3c654904e1bd859dea39960475fef4c7924b", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_19": { + "inputs": { + "crane": "crane_29", + "nixpkgs": "nixpkgs_31", + "rust-overlay": "rust-overlay_21" + }, + "locked": { + "lastModified": 1708609246, + "narHash": "sha256-8C5Nf84Sw3vutYxACA+N1Mc+QC06SddHzA1mjls/v8w=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "e7e9cfca683aaa78dfa7959bff7b1af91aa6651b", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_2": { + "inputs": { + "crane": "crane_2", + "hcUtils": "hcUtils_3", + "holochain": "holochain_15", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_17", + "versions": "versions_8" + }, + "locked": { + "lastModified": 1710328673, + "narHash": "sha256-qA1IzSbEsgd+QLOegEK8I6Frk1ryX/iFB1vXw/NYRvs=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "c80094cb97c3a01e31e59773b6b2e53990191460", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_3": { + "inputs": { + "crane": "crane_3", + "hcUtils": "hcUtils_4", + "holochain": "holochain_13", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_15", + "versions": "versions_7" + }, + "locked": { + "lastModified": 1710259503, + "narHash": "sha256-GKjKaY3L1WCWLx6zHcR6EvR2JKCABpIbrGnuZcbEEPk=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "7503e467f55425cfa802f33cafcb53d6011417b7", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_4": { + "inputs": { + "crane": "crane_4", + "hcUtils": "hcUtils_5", + "holochain": "holochain_11", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_13", + "versions": "versions_6" + }, + "locked": { + "lastModified": 1710259052, + "narHash": "sha256-L5u7wJDtKR/DfaS0tqUJymEimkwzTItmgkRug/q+qM4=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "1c569cb148d3cc33c18e55aca5e99032166d8bb0", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_5": { + "inputs": { + "crane": "crane_5", + "hcUtils": "hcUtils_6", + "holochain": "holochain_9", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_11", + "versions": "versions_5" + }, + "locked": { + "lastModified": 1710170526, + "narHash": "sha256-8SMfoPrMF0nXBmN+k9Ckxy/1VFB7GWMX+ZWPQUl/ylM=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "8ae6c8817918006f25f0e38c0351809e23328df8", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_6": { + "inputs": { + "crane": "crane_6", + "hcUtils": "hcUtils_7", + "holochain": "holochain_7", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_9", + "versions": "versions_4" + }, + "locked": { + "lastModified": 1709938899, + "narHash": "sha256-1cojwgfN0Ey5eRyrlD5DktbraaFGK0LNv8LyZuQhBlc=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "528c55a03bec665e4f44e8b45f4b9d03ea9d9471", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_7": { + "inputs": { + "crane": "crane_7", + "hcUtils": "hcUtils_8", + "holochain": "holochain_5", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_7", + "versions": "versions_3" + }, + "locked": { + "lastModified": 1709847264, + "narHash": "sha256-209E9O8Ck/2fHMkjLVQ7/RlDfQtHJRh/vP+B8jFDQHE=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "5b8365d3a970df9038a4518dee76c0e40a5de813", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_8": { + "inputs": { + "crane": "crane_8", + "hcUtils": "hcUtils_9", + "holochain": "holochain_3", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_5", + "versions": "versions_2" + }, + "locked": { + "lastModified": 1709743154, + "narHash": "sha256-M16V2rHCdfTW9aot1XeMxWpmIs0axH2FbFpmsbBY5ZY=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "282b7ab81a5755e8c41982766caecb6663c63c2d", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "hcUtils_9": { + "inputs": { + "crane": "crane_9", + "hcUtils": "hcUtils_10", + "holochain": "holochain", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_3", + "versions": "versions" + }, + "locked": { + "lastModified": 1709649392, + "narHash": "sha256-X3ijMZFXDu2V2Wko1jFO8oovqbilGUj5U77WNiP+jvE=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "546c3c654904e1bd859dea39960475fef4c7924b", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, + "holochain": { + "inputs": { + "cargo-chef": "cargo-chef", + "cargo-rdme": "cargo-rdme", + "crane": "crane_11", + "crate2nix": "crate2nix", + "empty": "empty", + "flake-compat": "flake-compat", + "flake-parts": "flake-parts", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter", + "nixpkgs": "nixpkgs_12", + "pre-commit-hooks-nix": "pre-commit-hooks-nix", + "repo-git": "repo-git", + "rust-overlay": "rust-overlay_2", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1708595708, + "narHash": "sha256-coOhtMii+epTQobSAj1qGfVYbN9Rs0oB+Rj6ZePqKIU=", + "owner": "holochain", + "repo": "holochain", + "rev": "e2fd7138bfeb1185a245421eefb2f83d237eccef", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_10": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_11": { + "inputs": { + "cargo-chef": "cargo-chef_6", + "cargo-rdme": "cargo-rdme_6", + "crane": "crane_16", + "crate2nix": "crate2nix_6", + "empty": "empty_6", + "flake-compat": "flake-compat_6", + "flake-parts": "flake-parts_6", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_6", + "nixpkgs": "nixpkgs_17", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_6", + "repo-git": "repo-git_6", + "rust-overlay": "rust-overlay_12", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_12": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_13": { + "inputs": { + "cargo-chef": "cargo-chef_7", + "cargo-rdme": "cargo-rdme_7", + "crane": "crane_17", + "crate2nix": "crate2nix_7", + "empty": "empty_7", + "flake-compat": "flake-compat_7", + "flake-parts": "flake-parts_7", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_7", + "nixpkgs": "nixpkgs_18", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_7", + "repo-git": "repo-git_7", + "rust-overlay": "rust-overlay_14", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_14": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_15": { + "inputs": { + "cargo-chef": "cargo-chef_8", + "cargo-rdme": "cargo-rdme_8", + "crane": "crane_18", + "crate2nix": "crate2nix_8", + "empty": "empty_8", + "flake-compat": "flake-compat_8", + "flake-parts": "flake-parts_8", + "holochain": [ + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_8", + "nixpkgs": "nixpkgs_19", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_8", + "repo-git": "repo-git_8", + "rust-overlay": "rust-overlay_16", + "scaffolding": [ + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_16": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_17": { + "inputs": { + "cargo-chef": "cargo-chef_9", + "cargo-rdme": "cargo-rdme_9", + "crane": "crane_19", + "crate2nix": "crate2nix_9", + "empty": "empty_9", + "flake-compat": "flake-compat_9", + "flake-parts": "flake-parts_9", + "holochain": [ + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_9", + "nixpkgs": "nixpkgs_20", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_9", + "repo-git": "repo-git_9", + "rust-overlay": "rust-overlay_18", + "scaffolding": [ + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", + "owner": "holochain", + "repo": "holochain", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_18": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_19": { + "inputs": { + "cargo-chef": "cargo-chef_10", + "cargo-rdme": "cargo-rdme_10", + "crane": "crane_20", + "crate2nix": "crate2nix_10", + "empty": "empty_10", + "flake-compat": "flake-compat_10", + "flake-parts": "flake-parts_10", + "holochain": [ + "holochain", + "empty" + ], + "lair": [ + "holochain", + "empty" + ], + "launcher": [ + "holochain", + "empty" + ], + "nix-filter": "nix-filter_10", + "nixpkgs": "nixpkgs_21", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_10", + "repo-git": "repo-git_10", + "rust-overlay": "rust-overlay_20", + "scaffolding": [ + "holochain", + "empty" + ], + "versions": [ + "versions" + ] + }, + "locked": { + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", + "owner": "holochain", + "repo": "holochain", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_2": { + "flake": false, + "locked": { + "lastModified": 1707871925, + "narHash": "sha256-LmDAQT21zXXgDl/68ERyCerAWCym7aKECnXsnyLcmXw=", + "owner": "holochain", + "repo": "holochain", + "rev": "2f3c8dce79586aad6f67d3428bf56d868303f956", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.37", + "repo": "holochain", + "type": "github" + } + }, + "holochain_20": { + "inputs": { + "cargo-chef": "cargo-chef_11", + "cargo-rdme": "cargo-rdme_11", + "crane": "crane_30", + "crate2nix": "crate2nix_11", + "empty": "empty_11", + "flake-compat": "flake-compat_11", + "flake-parts": "flake-parts_11", + "holochain": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_11", + "nixpkgs": "nixpkgs_32", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_11", + "repo-git": "repo-git_11", + "rust-overlay": "rust-overlay_22", + "scaffolding": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1708595708, + "narHash": "sha256-coOhtMii+epTQobSAj1qGfVYbN9Rs0oB+Rj6ZePqKIU=", + "owner": "holochain", + "repo": "holochain", + "rev": "e2fd7138bfeb1185a245421eefb2f83d237eccef", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_21": { + "flake": false, + "locked": { + "lastModified": 1707871925, + "narHash": "sha256-LmDAQT21zXXgDl/68ERyCerAWCym7aKECnXsnyLcmXw=", + "owner": "holochain", + "repo": "holochain", + "rev": "2f3c8dce79586aad6f67d3428bf56d868303f956", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.37", + "repo": "holochain", + "type": "github" + } + }, + "holochain_22": { + "inputs": { + "cargo-chef": "cargo-chef_12", + "cargo-rdme": "cargo-rdme_12", + "crane": "crane_31", + "crate2nix": "crate2nix_12", + "empty": "empty_12", + "flake-compat": "flake-compat_12", + "flake-parts": "flake-parts_12", + "holochain": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_12", + "nixpkgs": "nixpkgs_33", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_12", + "repo-git": "repo-git_12", + "rust-overlay": "rust-overlay_24", + "scaffolding": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709620314, + "narHash": "sha256-d7vekpj538VqdDrChFbVQpSVGDMnU1nSksbSzacKvyM=", + "owner": "holochain", + "repo": "holochain", + "rev": "392bdfd729fb6ce50f78f9e7f1c757dc392675f4", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_23": { + "flake": false, + "locked": { + "lastModified": 1709081329, + "narHash": "sha256-QP7WKySgEFbgNaSc7BNBBOWCVKuycXSp4HAfD4GTug8=", + "owner": "holochain", + "repo": "holochain", + "rev": "547c63a442e61be805887b644c78cf6f970d631b", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.38", + "repo": "holochain", + "type": "github" + } + }, + "holochain_24": { + "inputs": { + "cargo-chef": "cargo-chef_13", + "cargo-rdme": "cargo-rdme_13", + "crane": "crane_32", + "crate2nix": "crate2nix_13", + "empty": "empty_13", + "flake-compat": "flake-compat_13", + "flake-parts": "flake-parts_13", + "holochain": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_13", + "nixpkgs": "nixpkgs_34", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_13", + "repo-git": "repo-git_13", + "rust-overlay": "rust-overlay_26", + "scaffolding": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709731345, + "narHash": "sha256-YNMiQJRbnBdTQ/Q26M5zp+j2DGtpmaI/VWPVJxc4G7k=", + "owner": "holochain", + "repo": "holochain", + "rev": "3c3d2d73819e97cb9f5487d853f75a9954850f1e", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_25": { + "flake": false, + "locked": { + "lastModified": 1709081329, + "narHash": "sha256-QP7WKySgEFbgNaSc7BNBBOWCVKuycXSp4HAfD4GTug8=", + "owner": "holochain", + "repo": "holochain", + "rev": "547c63a442e61be805887b644c78cf6f970d631b", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.38", + "repo": "holochain", + "type": "github" + } + }, + "holochain_26": { + "inputs": { + "cargo-chef": "cargo-chef_14", + "cargo-rdme": "cargo-rdme_14", + "crane": "crane_33", + "crate2nix": "crate2nix_14", + "empty": "empty_14", + "flake-compat": "flake-compat_14", + "flake-parts": "flake-parts_14", + "holochain": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_14", + "nixpkgs": "nixpkgs_35", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_14", + "repo-git": "repo-git_14", + "rust-overlay": "rust-overlay_28", + "scaffolding": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709879507, + "narHash": "sha256-62ksNmQzgtsOlA6OFsdmVwUd6Me8g114DO9U4G23Ovk=", + "owner": "holochain", + "repo": "holochain", + "rev": "ef5d8cb9f6b57e208dff52ea173f13a1aaf46cce", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_27": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_28": { + "inputs": { + "cargo-chef": "cargo-chef_15", + "cargo-rdme": "cargo-rdme_15", + "crane": "crane_34", + "crate2nix": "crate2nix_15", + "empty": "empty_15", + "flake-compat": "flake-compat_15", + "flake-parts": "flake-parts_15", + "holochain": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_15", + "nixpkgs": "nixpkgs_36", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_15", + "repo-git": "repo-git_15", + "rust-overlay": "rust-overlay_30", + "scaffolding": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710138828, + "narHash": "sha256-MyZxoUdRrjIaiywthLfaBh2nUuvmgl8HSikKOoj9rxs=", + "owner": "holochain", + "repo": "holochain", + "rev": "5fdb77016be1925ec89cde1fffa0e9c80f9bbd92", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_29": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_3": { + "inputs": { + "cargo-chef": "cargo-chef_2", + "cargo-rdme": "cargo-rdme_2", + "crane": "crane_12", + "crate2nix": "crate2nix_2", + "empty": "empty_2", + "flake-compat": "flake-compat_2", + "flake-parts": "flake-parts_2", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_2", + "nixpkgs": "nixpkgs_13", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_2", + "repo-git": "repo-git_2", + "rust-overlay": "rust-overlay_4", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709620314, + "narHash": "sha256-d7vekpj538VqdDrChFbVQpSVGDMnU1nSksbSzacKvyM=", + "owner": "holochain", + "repo": "holochain", + "rev": "392bdfd729fb6ce50f78f9e7f1c757dc392675f4", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_30": { + "inputs": { + "cargo-chef": "cargo-chef_16", + "cargo-rdme": "cargo-rdme_16", + "crane": "crane_35", + "crate2nix": "crate2nix_16", + "empty": "empty_16", + "flake-compat": "flake-compat_16", + "flake-parts": "flake-parts_16", + "holochain": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_16", + "nixpkgs": "nixpkgs_37", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_16", + "repo-git": "repo-git_16", + "rust-overlay": "rust-overlay_32", + "scaffolding": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_31": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_32": { + "inputs": { + "cargo-chef": "cargo-chef_17", + "cargo-rdme": "cargo-rdme_17", + "crane": "crane_36", + "crate2nix": "crate2nix_17", + "empty": "empty_17", + "flake-compat": "flake-compat_17", + "flake-parts": "flake-parts_17", + "holochain": [ + "profiles", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "profiles", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "profiles", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_17", + "nixpkgs": "nixpkgs_38", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_17", + "repo-git": "repo-git_17", + "rust-overlay": "rust-overlay_34", + "scaffolding": [ + "profiles", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "profiles", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_33": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_34": { + "inputs": { + "cargo-chef": "cargo-chef_18", + "cargo-rdme": "cargo-rdme_18", + "crane": "crane_37", + "crate2nix": "crate2nix_18", + "empty": "empty_18", + "flake-compat": "flake-compat_18", + "flake-parts": "flake-parts_18", + "holochain": [ + "profiles", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "profiles", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "profiles", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_18", + "nixpkgs": "nixpkgs_39", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_18", + "repo-git": "repo-git_18", + "rust-overlay": "rust-overlay_36", + "scaffolding": [ + "profiles", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "profiles", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_35": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_36": { + "inputs": { + "cargo-chef": "cargo-chef_19", + "cargo-rdme": "cargo-rdme_19", + "crane": "crane_38", + "crate2nix": "crate2nix_19", + "empty": "empty_19", + "flake-compat": "flake-compat_19", + "flake-parts": "flake-parts_19", + "holochain": [ + "profiles", + "holochain", + "empty" + ], + "lair": [ + "profiles", + "holochain", + "empty" + ], + "launcher": [ + "profiles", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_19", + "nixpkgs": "nixpkgs_40", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_19", + "repo-git": "repo-git_19", + "rust-overlay": "rust-overlay_38", + "scaffolding": [ + "profiles", + "holochain", + "empty" + ], + "versions": [ + "profiles", + "versions" + ] + }, + "locked": { + "lastModified": 1710311478, + "narHash": "sha256-Y2tLU/pECPtIEoFAyG2MWEV5i/HU2Rw8VWq7r5Cu0rk=", + "owner": "holochain", + "repo": "holochain", + "rev": "29ca46b1f934ac112ab0df5c56a786c5cb37f2cc", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_37": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_38": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_4": { + "flake": false, + "locked": { + "lastModified": 1709081329, + "narHash": "sha256-QP7WKySgEFbgNaSc7BNBBOWCVKuycXSp4HAfD4GTug8=", + "owner": "holochain", + "repo": "holochain", + "rev": "547c63a442e61be805887b644c78cf6f970d631b", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.38", + "repo": "holochain", + "type": "github" + } + }, + "holochain_5": { + "inputs": { + "cargo-chef": "cargo-chef_3", + "cargo-rdme": "cargo-rdme_3", + "crane": "crane_13", + "crate2nix": "crate2nix_3", + "empty": "empty_3", + "flake-compat": "flake-compat_3", + "flake-parts": "flake-parts_3", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_3", + "nixpkgs": "nixpkgs_14", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_3", + "repo-git": "repo-git_3", + "rust-overlay": "rust-overlay_6", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709731345, + "narHash": "sha256-YNMiQJRbnBdTQ/Q26M5zp+j2DGtpmaI/VWPVJxc4G7k=", + "owner": "holochain", + "repo": "holochain", + "rev": "3c3d2d73819e97cb9f5487d853f75a9954850f1e", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_6": { + "flake": false, + "locked": { + "lastModified": 1709081329, + "narHash": "sha256-QP7WKySgEFbgNaSc7BNBBOWCVKuycXSp4HAfD4GTug8=", + "owner": "holochain", + "repo": "holochain", + "rev": "547c63a442e61be805887b644c78cf6f970d631b", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.38", + "repo": "holochain", + "type": "github" + } + }, + "holochain_7": { + "inputs": { + "cargo-chef": "cargo-chef_4", + "cargo-rdme": "cargo-rdme_4", + "crane": "crane_14", + "crate2nix": "crate2nix_4", + "empty": "empty_4", + "flake-compat": "flake-compat_4", + "flake-parts": "flake-parts_4", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_4", + "nixpkgs": "nixpkgs_15", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_4", + "repo-git": "repo-git_4", + "rust-overlay": "rust-overlay_8", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1709879507, + "narHash": "sha256-62ksNmQzgtsOlA6OFsdmVwUd6Me8g114DO9U4G23Ovk=", + "owner": "holochain", + "repo": "holochain", + "rev": "ef5d8cb9f6b57e208dff52ea173f13a1aaf46cce", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_8": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, + "holochain_9": { + "inputs": { + "cargo-chef": "cargo-chef_5", + "cargo-rdme": "cargo-rdme_5", + "crane": "crane_15", + "crate2nix": "crate2nix_5", + "empty": "empty_5", + "flake-compat": "flake-compat_5", + "flake-parts": "flake-parts_5", + "holochain": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "lair": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "launcher": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_5", + "nixpkgs": "nixpkgs_16", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_5", + "repo-git": "repo-git_5", + "rust-overlay": "rust-overlay_10", + "scaffolding": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "empty" + ], + "versions": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "versions" + ] + }, + "locked": { + "lastModified": 1710138828, + "narHash": "sha256-MyZxoUdRrjIaiywthLfaBh2nUuvmgl8HSikKOoj9rxs=", + "owner": "holochain", + "repo": "holochain", + "rev": "5fdb77016be1925ec89cde1fffa0e9c80f9bbd92", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "lair": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_10": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_11": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_12": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_13": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_14": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_15": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_16": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_17": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_18": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_19": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_2": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_3": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_4": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_5": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_6": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_7": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_8": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "lair_9": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, + "launcher": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_10": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_11": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_12": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_13": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_14": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_15": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_16": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_17": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_18": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_19": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_2": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_3": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_4": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_5": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_6": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_7": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_8": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "launcher_9": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, + "nix-filter": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_10": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_11": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_12": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_13": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_14": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_15": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_16": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_17": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_18": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_19": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_2": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_3": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_4": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_5": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_6": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_7": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_8": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nix-filter_9": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_10": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_11": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_12": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_13": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_14": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_15": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_16": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_17": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_18": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_19": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_2": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_3": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_4": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_5": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_6": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_7": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_8": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_9": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_10": { + "locked": { + "lastModified": 1706925685, + "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_11": { + "locked": { + "lastModified": 1708603017, + "narHash": "sha256-YVMXAorB6bE+y3nFJY0OUfQERI3tyLTDqd6zuPfewp8=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "2a56c2ca6814a31f8211dad09302398a06acbcdf", + "type": "github" + }, + "original": { + "owner": "nixos", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_12": { + "locked": { + "lastModified": 1708475490, + "narHash": "sha256-g1v0TsWBQPX97ziznfJdWhgMyMGtoBFs102xSYO4syU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0e74ca98a74bc7270d28838369593635a5db3260", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_13": { + "locked": { + "lastModified": 1709479366, + "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "b8697e57f10292a6165a20f03d2f42920dfaf973", + "type": "github" }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_14": { "locked": { - "lastModified": 1709731345, - "narHash": "sha256-YNMiQJRbnBdTQ/Q26M5zp+j2DGtpmaI/VWPVJxc4G7k=", - "owner": "holochain", - "repo": "holochain", - "rev": "3c3d2d73819e97cb9f5487d853f75a9954850f1e", + "lastModified": 1709479366, + "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "b8697e57f10292a6165a20f03d2f42920dfaf973", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "holochain_6": { - "flake": false, + "nixpkgs_15": { "locked": { - "lastModified": 1709081329, - "narHash": "sha256-QP7WKySgEFbgNaSc7BNBBOWCVKuycXSp4HAfD4GTug8=", - "owner": "holochain", - "repo": "holochain", - "rev": "547c63a442e61be805887b644c78cf6f970d631b", + "lastModified": 1709703039, + "narHash": "sha256-6hqgQ8OK6gsMu1VtcGKBxKQInRLHtzulDo9Z5jxHEFY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "9df3e30ce24fd28c7b3e2de0d986769db5d6225d", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.38", - "repo": "holochain", + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_16": { + "locked": { + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "holochain_7": { - "inputs": { - "cargo-chef": "cargo-chef_4", - "cargo-rdme": "cargo-rdme_4", - "crane": "crane_14", - "crate2nix": "crate2nix_4", - "empty": "empty_4", - "flake-compat": "flake-compat_4", - "flake-parts": "flake-parts_4", - "holochain": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_4", - "nixpkgs": "nixpkgs_15", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_4", - "repo-git": "repo-git_4", - "rust-overlay": "rust-overlay_8", - "scaffolding": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "versions" - ] + "nixpkgs_17": { + "locked": { + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", + "type": "github" }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_18": { "locked": { - "lastModified": 1709879507, - "narHash": "sha256-62ksNmQzgtsOlA6OFsdmVwUd6Me8g114DO9U4G23Ovk=", - "owner": "holochain", - "repo": "holochain", - "rev": "ef5d8cb9f6b57e208dff52ea173f13a1aaf46cce", + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_19": { + "locked": { + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "holochain_8": { - "flake": false, + "nixpkgs_2": { "locked": { - "lastModified": 1709687030, - "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", - "owner": "holochain", - "repo": "holochain", - "rev": "cb671524080332983281baa2db7c1851344e79d2", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-0.3.0-beta-dev.39", - "repo": "holochain", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "holochain_9": { - "inputs": { - "cargo-chef": "cargo-chef_5", - "cargo-rdme": "cargo-rdme_5", - "crane": "crane_15", - "crate2nix": "crate2nix_5", - "empty": "empty_5", - "flake-compat": "flake-compat_5", - "flake-parts": "flake-parts_5", - "holochain": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "lair": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "launcher": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "nix-filter": "nix-filter_5", - "nixpkgs": "nixpkgs_16", - "pre-commit-hooks-nix": "pre-commit-hooks-nix_5", - "repo-git": "repo-git_5", - "rust-overlay": "rust-overlay_10", - "scaffolding": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "holochain", - "empty" - ], - "versions": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "versions" - ] + "nixpkgs_20": { + "locked": { + "lastModified": 1710272261, + "narHash": "sha256-g0bDwXFmTE7uGDOs9HcJsfLFhH7fOsASbAuOzDC+fhQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0ad13a6833440b8e238947e47bea7f11071dc2b2", + "type": "github" }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_21": { "locked": { - "lastModified": 1710138828, - "narHash": "sha256-MyZxoUdRrjIaiywthLfaBh2nUuvmgl8HSikKOoj9rxs=", - "owner": "holochain", - "repo": "holochain", - "rev": "5fdb77016be1925ec89cde1fffa0e9c80f9bbd92", + "lastModified": 1710272261, + "narHash": "sha256-g0bDwXFmTE7uGDOs9HcJsfLFhH7fOsASbAuOzDC+fhQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0ad13a6833440b8e238947e47bea7f11071dc2b2", "type": "github" }, "original": { - "owner": "holochain", - "repo": "holochain", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "lair": { - "flake": false, + "nixpkgs_22": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "lair_10": { - "flake": false, + "nixpkgs_23": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "lair_2": { - "flake": false, + "nixpkgs_24": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "lair_3": { - "flake": false, + "nixpkgs_25": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "lair_4": { - "flake": false, + "nixpkgs_26": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "lair_5": { - "flake": false, + "nixpkgs_27": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "lair_6": { - "flake": false, + "nixpkgs_28": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "lair_7": { - "flake": false, + "nixpkgs_29": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1706925685, + "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "lair_8": { - "flake": false, + "nixpkgs_3": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "lair_9": { - "flake": false, + "nixpkgs_30": { "locked": { - "lastModified": 1706569525, - "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", - "owner": "holochain", - "repo": "lair", - "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "lastModified": 1706925685, + "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", "type": "github" }, "original": { - "owner": "holochain", - "ref": "lair_keystore-v0.4.3", - "repo": "lair", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "launcher": { - "flake": false, + "nixpkgs_31": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1708603017, + "narHash": "sha256-YVMXAorB6bE+y3nFJY0OUfQERI3tyLTDqd6zuPfewp8=", + "owner": "nixos", + "repo": "nixpkgs", + "rev": "2a56c2ca6814a31f8211dad09302398a06acbcdf", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", + "owner": "nixos", + "repo": "nixpkgs", "type": "github" } }, - "launcher_10": { - "flake": false, + "nixpkgs_32": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1708475490, + "narHash": "sha256-g1v0TsWBQPX97ziznfJdWhgMyMGtoBFs102xSYO4syU=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0e74ca98a74bc7270d28838369593635a5db3260", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_33": { + "locked": { + "lastModified": 1709479366, + "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "b8697e57f10292a6165a20f03d2f42920dfaf973", "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "launcher_2": { - "flake": false, + "nixpkgs_34": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709479366, + "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "b8697e57f10292a6165a20f03d2f42920dfaf973", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "launcher_3": { - "flake": false, + "nixpkgs_35": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709703039, + "narHash": "sha256-6hqgQ8OK6gsMu1VtcGKBxKQInRLHtzulDo9Z5jxHEFY=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "9df3e30ce24fd28c7b3e2de0d986769db5d6225d", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "launcher_4": { - "flake": false, + "nixpkgs_36": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "launcher_5": { - "flake": false, + "nixpkgs_37": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "launcher_6": { - "flake": false, + "nixpkgs_38": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "launcher_7": { - "flake": false, + "nixpkgs_39": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "launcher_8": { - "flake": false, + "nixpkgs_4": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "launcher_9": { - "flake": false, + "nixpkgs_40": { "locked": { - "lastModified": 1706294585, - "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", - "owner": "holochain", - "repo": "launcher", - "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "lastModified": 1709961763, + "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "launcher", - "type": "github" + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" } }, - "nix-filter": { + "nixpkgs_5": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "nix-filter_10": { + "nixpkgs_6": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "nix-filter_2": { + "nixpkgs_7": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "nix-filter_3": { + "nixpkgs_8": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "nix-filter_4": { + "nixpkgs_9": { "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1706925685, + "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", "type": "github" } }, - "nix-filter_5": { + "pre-commit-hooks-nix": { + "flake": false, "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nix-filter_6": { + "pre-commit-hooks-nix_10": { + "flake": false, "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nix-filter_7": { + "pre-commit-hooks-nix_11": { + "flake": false, "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nix-filter_8": { + "pre-commit-hooks-nix_12": { + "flake": false, "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nix-filter_9": { + "pre-commit-hooks-nix_13": { + "flake": false, "locked": { - "lastModified": 1705332318, - "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", - "owner": "numtide", - "repo": "nix-filter", - "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "owner": "numtide", - "repo": "nix-filter", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs": { + "pre-commit-hooks-nix_14": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib": { + "pre-commit-hooks-nix_15": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_10": { + "pre-commit-hooks-nix_16": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_2": { + "pre-commit-hooks-nix_17": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_3": { + "pre-commit-hooks-nix_18": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_4": { + "pre-commit-hooks-nix_19": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_5": { + "pre-commit-hooks-nix_2": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_6": { + "pre-commit-hooks-nix_3": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_7": { + "pre-commit-hooks-nix_4": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_8": { + "pre-commit-hooks-nix_5": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "type": "github" + } + }, + "pre-commit-hooks-nix_6": { + "flake": false, + "locked": { + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "type": "github" + }, + "original": { + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs-lib_9": { + "pre-commit-hooks-nix_7": { + "flake": false, "locked": { - "dir": "lib", - "lastModified": 1706550542, - "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "dir": "lib", - "owner": "NixOS", - "ref": "nixos-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs_10": { + "pre-commit-hooks-nix_8": { + "flake": false, "locked": { - "lastModified": 1706925685, - "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs_11": { + "pre-commit-hooks-nix_9": { + "flake": false, "locked": { - "lastModified": 1708603017, - "narHash": "sha256-YVMXAorB6bE+y3nFJY0OUfQERI3tyLTDqd6zuPfewp8=", - "owner": "nixos", - "repo": "nixpkgs", - "rev": "2a56c2ca6814a31f8211dad09302398a06acbcdf", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "owner": "nixos", - "repo": "nixpkgs", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, - "nixpkgs_12": { + "profiles": { + "inputs": { + "hcUtils": "hcUtils_11", + "holochain": "holochain_36", + "nixpkgs": [ + "profiles", + "holochain", + "nixpkgs" + ], + "versions": "versions_18" + }, "locked": { - "lastModified": 1708475490, - "narHash": "sha256-g1v0TsWBQPX97ziznfJdWhgMyMGtoBFs102xSYO4syU=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "0e74ca98a74bc7270d28838369593635a5db3260", + "lastModified": 1710410099, + "narHash": "sha256-HatD0MQ0lk7C21hn4/uZKsQYg+3yK5NihUxUyz77Qnw=", + "owner": "holochain-open-dev", + "repo": "profiles", + "rev": "671eb7eeb34a5cbd99af93362e7dd18ece402ffe", "type": "github" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "owner": "holochain-open-dev", + "ref": "nixify", + "repo": "profiles", + "type": "github" } }, - "nixpkgs_13": { + "repo-git": { + "flake": false, "locked": { - "lastModified": 1709479366, - "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "b8697e57f10292a6165a20f03d2f42920dfaf973", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_14": { + "repo-git_10": { + "flake": false, "locked": { - "lastModified": 1709479366, - "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "b8697e57f10292a6165a20f03d2f42920dfaf973", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_15": { + "repo-git_11": { + "flake": false, "locked": { - "lastModified": 1709703039, - "narHash": "sha256-6hqgQ8OK6gsMu1VtcGKBxKQInRLHtzulDo9Z5jxHEFY=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "9df3e30ce24fd28c7b3e2de0d986769db5d6225d", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_16": { + "repo-git_12": { + "flake": false, "locked": { - "lastModified": 1709961763, - "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_17": { + "repo-git_13": { + "flake": false, "locked": { - "lastModified": 1709961763, - "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_18": { + "repo-git_14": { + "flake": false, "locked": { - "lastModified": 1709961763, - "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_19": { + "repo-git_15": { + "flake": false, "locked": { - "lastModified": 1709961763, - "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_2": { + "repo-git_16": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_20": { + "repo-git_17": { + "flake": false, "locked": { - "lastModified": 1710272261, - "narHash": "sha256-g0bDwXFmTE7uGDOs9HcJsfLFhH7fOsASbAuOzDC+fhQ=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "0ad13a6833440b8e238947e47bea7f11071dc2b2", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_21": { + "repo-git_18": { + "flake": false, "locked": { - "lastModified": 1710272261, - "narHash": "sha256-g0bDwXFmTE7uGDOs9HcJsfLFhH7fOsASbAuOzDC+fhQ=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "0ad13a6833440b8e238947e47bea7f11071dc2b2", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_3": { + "repo-git_19": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, + "repo-git_2": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_4": { + "repo-git_3": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_5": { + "repo-git_4": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_6": { + "repo-git_5": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_7": { + "repo-git_6": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_8": { + "repo-git_7": { + "flake": false, "locked": { - "lastModified": 1709386671, - "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "fa9a51752f1b5de583ad5213eb621be071806663", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "nixpkgs_9": { + "repo-git_8": { + "flake": false, "locked": { - "lastModified": 1706925685, - "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "NixOS", - "ref": "nixpkgs-unstable", - "repo": "nixpkgs", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "pre-commit-hooks-nix": { + "repo-git_9": { "flake": false, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", - "type": "github" + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "type": "github" + "type": "file", + "url": "file:/dev/null" } }, - "pre-commit-hooks-nix_10": { - "flake": false, + "root": { + "inputs": { + "hcUtils": "hcUtils", + "holochain": "holochain_19", + "nixpkgs": [ + "holochain", + "nixpkgs" + ], + "profiles": "profiles", + "versions": "versions_19" + } + }, + "rust-overlay": { + "inputs": { + "flake-utils": "flake-utils", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1708567842, + "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_2": { - "flake": false, + "rust-overlay_10": { + "inputs": { + "flake-utils": "flake-utils_10", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1710123130, + "narHash": "sha256-EoGL/WSM1M2L099Q91mPKO/FRV2iu2ZLOEp3y5sLfiE=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "73aca260afe5d41d3ebce932c8d896399c9d5174", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_3": { - "flake": false, + "rust-overlay_11": { + "inputs": { + "flake-utils": "flake-utils_11", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1710123130, + "narHash": "sha256-EoGL/WSM1M2L099Q91mPKO/FRV2iu2ZLOEp3y5sLfiE=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "73aca260afe5d41d3ebce932c8d896399c9d5174", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_4": { - "flake": false, - "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "rust-overlay_12": { + "inputs": { + "flake-utils": "flake-utils_12", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_5": { - "flake": false, + "rust-overlay_13": { + "inputs": { + "flake-utils": "flake-utils_13", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_6": { - "flake": false, + "rust-overlay_14": { + "inputs": { + "flake-utils": "flake-utils_14", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_7": { - "flake": false, + "rust-overlay_15": { + "inputs": { + "flake-utils": "flake-utils_15", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_8": { - "flake": false, + "rust-overlay_16": { + "inputs": { + "flake-utils": "flake-utils_16", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "pre-commit-hooks-nix_9": { - "flake": false, + "rust-overlay_17": { + "inputs": { + "flake-utils": "flake-utils_17", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "lastModified": 1707297608, - "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", - "owner": "cachix", - "repo": "pre-commit-hooks.nix", - "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { - "owner": "cachix", - "repo": "pre-commit-hooks.nix", + "owner": "oxalica", + "repo": "rust-overlay", "type": "github" } }, - "repo-git": { - "flake": false, - "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "rust-overlay_18": { + "inputs": { + "flake-utils": "flake-utils_18", + "nixpkgs": [ + "hcUtils", + "holochain", + "nixpkgs" + ] }, - "original": { - "type": "file", - "url": "file:/dev/null" - } - }, - "repo-git_10": { - "flake": false, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1710295923, + "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "repo-git_2": { - "flake": false, - "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "rust-overlay_19": { + "inputs": { + "flake-utils": "flake-utils_19", + "nixpkgs": [ + "hcUtils", + "nixpkgs" + ] }, - "original": { - "type": "file", - "url": "file:/dev/null" - } - }, - "repo-git_3": { - "flake": false, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1710295923, + "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "repo-git_4": { - "flake": false, + "rust-overlay_2": { + "inputs": { + "flake-utils": "flake-utils_2", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1708567842, + "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "repo-git_5": { - "flake": false, - "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "rust-overlay_20": { + "inputs": { + "flake-utils": "flake-utils_20", + "nixpkgs": [ + "holochain", + "nixpkgs" + ] }, - "original": { - "type": "file", - "url": "file:/dev/null" - } - }, - "repo-git_6": { - "flake": false, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1710295923, + "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "repo-git_7": { - "flake": false, + "rust-overlay_21": { + "inputs": { + "flake-utils": "flake-utils_21", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1708567842, + "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "repo-git_8": { - "flake": false, + "rust-overlay_22": { + "inputs": { + "flake-utils": "flake-utils_22", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "holochain", + "nixpkgs" + ] + }, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1708567842, + "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "repo-git_9": { - "flake": false, + "rust-overlay_23": { + "inputs": { + "flake-utils": "flake-utils_23", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, "locked": { - "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", - "type": "file", - "url": "file:/dev/null" + "lastModified": 1708567842, + "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "type": "github" }, "original": { - "type": "file", - "url": "file:/dev/null" + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "root": { + "rust-overlay_24": { "inputs": { - "hcUtils": "hcUtils", - "holochain": "holochain_19", + "flake-utils": "flake-utils_24", "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", "holochain", "nixpkgs" - ], - "versions": "versions_10" + ] + }, + "locked": { + "lastModified": 1709604635, + "narHash": "sha256-le4fwmWmjGRYWwkho0Gr7mnnZndOOe4XGbLw68OvF40=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "e86c0fb5d3a22a5f30d7f64ecad88643fe26449d", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" } }, - "rust-overlay": { + "rust-overlay_25": { "inputs": { - "flake-utils": "flake-utils", + "flake-utils": "flake-utils_25", "nixpkgs": [ + "profiles", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", "hcUtils", "hcUtils", "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1709604635, + "narHash": "sha256-le4fwmWmjGRYWwkho0Gr7mnnZndOOe4XGbLw68OvF40=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "e86c0fb5d3a22a5f30d7f64ecad88643fe26449d", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_26": { + "inputs": { + "flake-utils": "flake-utils_26", + "nixpkgs": [ + "profiles", + "hcUtils", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", "hcUtils", + "holochain", "nixpkgs" ] }, "locked": { - "lastModified": 1708567842, - "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "lastModified": 1709691047, + "narHash": "sha256-2Vwx1FLufoMEcOS8KAwP8H83IP3Hw6ZPrIDHkSXrFCY=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "rev": "d55139f3061cdf2c8f5f7bc8d49e884826e6a4ea", "type": "github" }, "original": { @@ -4273,25 +8620,26 @@ "type": "github" } }, - "rust-overlay_10": { + "rust-overlay_27": { "inputs": { - "flake-utils": "flake-utils_10", + "flake-utils": "flake-utils_27", "nixpkgs": [ + "profiles", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", "hcUtils", "hcUtils", - "holochain", "nixpkgs" ] }, "locked": { - "lastModified": 1710123130, - "narHash": "sha256-EoGL/WSM1M2L099Q91mPKO/FRV2iu2ZLOEp3y5sLfiE=", + "lastModified": 1709691047, + "narHash": "sha256-2Vwx1FLufoMEcOS8KAwP8H83IP3Hw6ZPrIDHkSXrFCY=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "73aca260afe5d41d3ebce932c8d896399c9d5174", + "rev": "d55139f3061cdf2c8f5f7bc8d49e884826e6a4ea", "type": "github" }, "original": { @@ -4300,24 +8648,26 @@ "type": "github" } }, - "rust-overlay_11": { + "rust-overlay_28": { "inputs": { - "flake-utils": "flake-utils_11", + "flake-utils": "flake-utils_28", "nixpkgs": [ + "profiles", "hcUtils", "hcUtils", "hcUtils", "hcUtils", "hcUtils", + "holochain", "nixpkgs" ] }, "locked": { - "lastModified": 1710123130, - "narHash": "sha256-EoGL/WSM1M2L099Q91mPKO/FRV2iu2ZLOEp3y5sLfiE=", + "lastModified": 1709863839, + "narHash": "sha256-QpEL5FmZNi2By3sKZY55wGniFXc4wEn9PQczlE8TG0o=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "73aca260afe5d41d3ebce932c8d896399c9d5174", + "rev": "e5ab9ee98f479081ad971473d2bc13c59e9fbc0a", "type": "github" }, "original": { @@ -4326,24 +8676,25 @@ "type": "github" } }, - "rust-overlay_12": { + "rust-overlay_29": { "inputs": { - "flake-utils": "flake-utils_12", + "flake-utils": "flake-utils_29", "nixpkgs": [ + "profiles", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", "hcUtils", - "holochain", "nixpkgs" ] }, "locked": { - "lastModified": 1710209426, - "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "lastModified": 1709863839, + "narHash": "sha256-QpEL5FmZNi2By3sKZY55wGniFXc4wEn9PQczlE8TG0o=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "rev": "e5ab9ee98f479081ad971473d2bc13c59e9fbc0a", "type": "github" }, "original": { @@ -4352,10 +8703,15 @@ "type": "github" } }, - "rust-overlay_13": { + "rust-overlay_3": { "inputs": { - "flake-utils": "flake-utils_13", + "flake-utils": "flake-utils_3", "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4364,11 +8720,11 @@ ] }, "locked": { - "lastModified": 1710209426, - "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "lastModified": 1708567842, + "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", "type": "github" }, "original": { @@ -4377,10 +8733,12 @@ "type": "github" } }, - "rust-overlay_14": { + "rust-overlay_30": { "inputs": { - "flake-utils": "flake-utils_14", + "flake-utils": "flake-utils_30", "nixpkgs": [ + "profiles", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4389,11 +8747,11 @@ ] }, "locked": { - "lastModified": 1710209426, - "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "lastModified": 1710123130, + "narHash": "sha256-EoGL/WSM1M2L099Q91mPKO/FRV2iu2ZLOEp3y5sLfiE=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "rev": "73aca260afe5d41d3ebce932c8d896399c9d5174", "type": "github" }, "original": { @@ -4402,10 +8760,12 @@ "type": "github" } }, - "rust-overlay_15": { + "rust-overlay_31": { "inputs": { - "flake-utils": "flake-utils_15", + "flake-utils": "flake-utils_31", "nixpkgs": [ + "profiles", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4413,11 +8773,11 @@ ] }, "locked": { - "lastModified": 1710209426, - "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "lastModified": 1710123130, + "narHash": "sha256-EoGL/WSM1M2L099Q91mPKO/FRV2iu2ZLOEp3y5sLfiE=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "rev": "73aca260afe5d41d3ebce932c8d896399c9d5174", "type": "github" }, "original": { @@ -4426,10 +8786,12 @@ "type": "github" } }, - "rust-overlay_16": { + "rust-overlay_32": { "inputs": { - "flake-utils": "flake-utils_16", + "flake-utils": "flake-utils_32", "nixpkgs": [ + "profiles", + "hcUtils", "hcUtils", "hcUtils", "holochain", @@ -4450,10 +8812,12 @@ "type": "github" } }, - "rust-overlay_17": { + "rust-overlay_33": { "inputs": { - "flake-utils": "flake-utils_17", + "flake-utils": "flake-utils_33", "nixpkgs": [ + "profiles", + "hcUtils", "hcUtils", "hcUtils", "nixpkgs" @@ -4473,21 +8837,23 @@ "type": "github" } }, - "rust-overlay_18": { + "rust-overlay_34": { "inputs": { - "flake-utils": "flake-utils_18", + "flake-utils": "flake-utils_34", "nixpkgs": [ + "profiles", + "hcUtils", "hcUtils", "holochain", "nixpkgs" ] }, "locked": { - "lastModified": 1710295923, - "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { @@ -4496,20 +8862,22 @@ "type": "github" } }, - "rust-overlay_19": { + "rust-overlay_35": { "inputs": { - "flake-utils": "flake-utils_19", + "flake-utils": "flake-utils_35", "nixpkgs": [ + "profiles", + "hcUtils", "hcUtils", "nixpkgs" ] }, "locked": { - "lastModified": 1710295923, - "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { @@ -4518,29 +8886,22 @@ "type": "github" } }, - "rust-overlay_2": { + "rust-overlay_36": { "inputs": { - "flake-utils": "flake-utils_2", + "flake-utils": "flake-utils_36", "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", + "profiles", "hcUtils", "holochain", "nixpkgs" ] }, "locked": { - "lastModified": 1708567842, - "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { @@ -4549,20 +8910,21 @@ "type": "github" } }, - "rust-overlay_20": { + "rust-overlay_37": { "inputs": { - "flake-utils": "flake-utils_20", + "flake-utils": "flake-utils_37", "nixpkgs": [ - "holochain", + "profiles", + "hcUtils", "nixpkgs" ] }, "locked": { - "lastModified": 1710295923, - "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "lastModified": 1710209426, + "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", + "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", "type": "github" }, "original": { @@ -4571,28 +8933,21 @@ "type": "github" } }, - "rust-overlay_3": { + "rust-overlay_38": { "inputs": { - "flake-utils": "flake-utils_3", + "flake-utils": "flake-utils_38", "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", + "profiles", + "holochain", "nixpkgs" ] }, "locked": { - "lastModified": 1708567842, - "narHash": "sha256-tJmra4795ji+hWZTq9UfbHISu+0/V8kdfAj2VYFk6xc=", + "lastModified": 1710295923, + "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "0b5394f1da0e50715d36a22d4912cb3b02e6b72a", + "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", "type": "github" }, "original": { @@ -4740,39 +9095,260 @@ "type": "github" }, "original": { - "owner": "oxalica", - "repo": "rust-overlay", + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_9": { + "inputs": { + "flake-utils": "flake-utils_9", + "nixpkgs": [ + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1709863839, + "narHash": "sha256-QpEL5FmZNi2By3sKZY55wGniFXc4wEn9PQczlE8TG0o=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "e5ab9ee98f479081ad971473d2bc13c59e9fbc0a", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "scaffolding": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_10": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_11": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_12": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_13": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_14": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_15": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_16": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_17": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_18": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_19": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "scaffolding_2": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", "type": "github" } }, - "rust-overlay_9": { - "inputs": { - "flake-utils": "flake-utils_9", - "nixpkgs": [ - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "hcUtils", - "nixpkgs" - ] - }, + "scaffolding_3": { + "flake": false, "locked": { - "lastModified": 1709863839, - "narHash": "sha256-QpEL5FmZNi2By3sKZY55wGniFXc4wEn9PQczlE8TG0o=", - "owner": "oxalica", - "repo": "rust-overlay", - "rev": "e5ab9ee98f479081ad971473d2bc13c59e9fbc0a", + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", "type": "github" }, "original": { - "owner": "oxalica", - "repo": "rust-overlay", + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", "type": "github" } }, - "scaffolding": { + "scaffolding_4": { "flake": false, "locked": { "lastModified": 1708377063, @@ -4789,7 +9365,7 @@ "type": "github" } }, - "scaffolding_10": { + "scaffolding_5": { "flake": false, "locked": { "lastModified": 1708377063, @@ -4806,7 +9382,7 @@ "type": "github" } }, - "scaffolding_2": { + "scaffolding_6": { "flake": false, "locked": { "lastModified": 1708377063, @@ -4823,7 +9399,7 @@ "type": "github" } }, - "scaffolding_3": { + "scaffolding_7": { "flake": false, "locked": { "lastModified": 1708377063, @@ -4840,7 +9416,7 @@ "type": "github" } }, - "scaffolding_4": { + "scaffolding_8": { "flake": false, "locked": { "lastModified": 1708377063, @@ -4857,7 +9433,7 @@ "type": "github" } }, - "scaffolding_5": { + "scaffolding_9": { "flake": false, "locked": { "lastModified": 1708377063, @@ -4868,81 +9444,283 @@ "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "scaffolding", + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, + "systems": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_10": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_11": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_12": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_13": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_14": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_15": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_16": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_17": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_18": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_19": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_2": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_20": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, + "systems_21": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", "type": "github" } }, - "scaffolding_6": { - "flake": false, + "systems_22": { "locked": { - "lastModified": 1708377063, - "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", - "owner": "holochain", - "repo": "scaffolding", - "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "scaffolding", + "owner": "nix-systems", + "repo": "default", "type": "github" } }, - "scaffolding_7": { - "flake": false, + "systems_23": { "locked": { - "lastModified": 1708377063, - "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", - "owner": "holochain", - "repo": "scaffolding", - "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "scaffolding", + "owner": "nix-systems", + "repo": "default", "type": "github" } }, - "scaffolding_8": { - "flake": false, + "systems_24": { "locked": { - "lastModified": 1708377063, - "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", - "owner": "holochain", - "repo": "scaffolding", - "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "scaffolding", + "owner": "nix-systems", + "repo": "default", "type": "github" } }, - "scaffolding_9": { - "flake": false, + "systems_25": { "locked": { - "lastModified": 1708377063, - "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", - "owner": "holochain", - "repo": "scaffolding", - "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", "type": "github" }, "original": { - "owner": "holochain", - "ref": "holochain-weekly", - "repo": "scaffolding", + "owner": "nix-systems", + "repo": "default", "type": "github" } }, - "systems": { + "systems_26": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -4957,7 +9735,7 @@ "type": "github" } }, - "systems_10": { + "systems_27": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -4972,7 +9750,7 @@ "type": "github" } }, - "systems_11": { + "systems_28": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -4987,7 +9765,7 @@ "type": "github" } }, - "systems_12": { + "systems_29": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -5002,7 +9780,7 @@ "type": "github" } }, - "systems_13": { + "systems_3": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -5017,7 +9795,7 @@ "type": "github" } }, - "systems_14": { + "systems_30": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -5032,7 +9810,7 @@ "type": "github" } }, - "systems_15": { + "systems_31": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -5047,7 +9825,7 @@ "type": "github" } }, - "systems_16": { + "systems_32": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -5062,7 +9840,7 @@ "type": "github" } }, - "systems_17": { + "systems_33": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -5077,7 +9855,7 @@ "type": "github" } }, - "systems_18": { + "systems_34": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -5092,7 +9870,7 @@ "type": "github" } }, - "systems_19": { + "systems_35": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -5107,7 +9885,7 @@ "type": "github" } }, - "systems_2": { + "systems_36": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -5122,7 +9900,7 @@ "type": "github" } }, - "systems_20": { + "systems_37": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -5137,7 +9915,7 @@ "type": "github" } }, - "systems_3": { + "systems_38": { "locked": { "lastModified": 1681028828, "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", @@ -5267,11 +10045,218 @@ }, "versions_10": { "inputs": { - "holochain": "holochain_20", + "holochain": "holochain_21", "lair": "lair_10", "launcher": "launcher_10", "scaffolding": "scaffolding_10" }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1708595708, + "narHash": "sha256-coOhtMii+epTQobSAj1qGfVYbN9Rs0oB+Rj6ZePqKIU=", + "owner": "holochain", + "repo": "holochain", + "rev": "e2fd7138bfeb1185a245421eefb2f83d237eccef", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_11": { + "inputs": { + "holochain": "holochain_23", + "lair": "lair_11", + "launcher": "launcher_11", + "scaffolding": "scaffolding_11" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1709620314, + "narHash": "sha256-d7vekpj538VqdDrChFbVQpSVGDMnU1nSksbSzacKvyM=", + "owner": "holochain", + "repo": "holochain", + "rev": "392bdfd729fb6ce50f78f9e7f1c757dc392675f4", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_12": { + "inputs": { + "holochain": "holochain_25", + "lair": "lair_12", + "launcher": "launcher_12", + "scaffolding": "scaffolding_12" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1709731345, + "narHash": "sha256-YNMiQJRbnBdTQ/Q26M5zp+j2DGtpmaI/VWPVJxc4G7k=", + "owner": "holochain", + "repo": "holochain", + "rev": "3c3d2d73819e97cb9f5487d853f75a9954850f1e", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_13": { + "inputs": { + "holochain": "holochain_27", + "lair": "lair_13", + "launcher": "launcher_13", + "scaffolding": "scaffolding_13" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1709879507, + "narHash": "sha256-62ksNmQzgtsOlA6OFsdmVwUd6Me8g114DO9U4G23Ovk=", + "owner": "holochain", + "repo": "holochain", + "rev": "ef5d8cb9f6b57e208dff52ea173f13a1aaf46cce", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_14": { + "inputs": { + "holochain": "holochain_29", + "lair": "lair_14", + "launcher": "launcher_14", + "scaffolding": "scaffolding_14" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710138828, + "narHash": "sha256-MyZxoUdRrjIaiywthLfaBh2nUuvmgl8HSikKOoj9rxs=", + "owner": "holochain", + "repo": "holochain", + "rev": "5fdb77016be1925ec89cde1fffa0e9c80f9bbd92", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_15": { + "inputs": { + "holochain": "holochain_31", + "lair": "lair_15", + "launcher": "launcher_15", + "scaffolding": "scaffolding_15" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_16": { + "inputs": { + "holochain": "holochain_33", + "lair": "lair_16", + "launcher": "launcher_16", + "scaffolding": "scaffolding_16" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_17": { + "inputs": { + "holochain": "holochain_35", + "lair": "lair_17", + "launcher": "launcher_17", + "scaffolding": "scaffolding_17" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710225101, + "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "owner": "holochain", + "repo": "holochain", + "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_18": { + "inputs": { + "holochain": "holochain_37", + "lair": "lair_18", + "launcher": "launcher_18", + "scaffolding": "scaffolding_18" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710311478, + "narHash": "sha256-Y2tLU/pECPtIEoFAyG2MWEV5i/HU2Rw8VWq7r5Cu0rk=", + "owner": "holochain", + "repo": "holochain", + "rev": "29ca46b1f934ac112ab0df5c56a786c5cb37f2cc", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "versions_19": { + "inputs": { + "holochain": "holochain_38", + "lair": "lair_19", + "launcher": "launcher_19", + "scaffolding": "scaffolding_19" + }, "locked": { "dir": "versions/weekly", "lastModified": 1710333296, diff --git a/nix/fixtures/module-repo/flake.nix b/nix/fixtures/module-repo/flake.nix index 075f0bd..84e0a33 100644 --- a/nix/fixtures/module-repo/flake.nix +++ b/nix/fixtures/module-repo/flake.nix @@ -11,6 +11,7 @@ inputs.versions.follows = "versions"; }; hcUtils.url = "path:../../.."; + profiles.url = "github:holochain-open-dev/profiles/nixify"; }; outputs = inputs @ { ... }: @@ -27,7 +28,7 @@ # All holochain packages from this _and_ the upstream repositories, combined allHolochainPackages = { inputs', self' }: inputs.nixpkgs.lib.attrsets.mergeAttrsList [ self'.packages - (upstreamHolochainPackages inputs') + (upstreamHolochainPackages { inherit inputs'; }) ]; allZomes = { inputs', self' }: inputs.hcUtils.outputs.lib.filterZomes (allHolochainPackages { inherit inputs' self'; }); allDnas = { inputs', self' }: inputs.hcUtils.outputs.lib.filterDnas (allHolochainPackages { inherit inputs' self'; }); @@ -44,8 +45,7 @@ } { imports = [ - ./module/zome.nix - ./module/ui.nix + ./zome/zome.nix ]; systems = builtins.attrNames inputs.holochain.devShells; @@ -60,18 +60,16 @@ }: { devShells.default = pkgs.mkShell { inputsFrom = [ inputs'.holochain.devShells.holonix ]; - packages = with pkgs; [ - nodejs_20 + packages = [ + pkgs.nodejs_20 # more packages go here - cargo-nextest - # (inputs.hcUtils.lib.syncNpmDependenciesWithNix { - # inherit system; - # holochainPackages = upstreamNpmPackages {inherit inputs';}; - # }) + pkgs.cargo-nextest + inputs'.hcUtils.packages.pnpm + inputs'.hcUtils.packages.sync-npm-git-dependencies-with-nix ]; shellHook = '' - # sync-npm-dependencies-with-nix + sync-npm-git-dependencies-with-nix ''; }; # packages.i = inputs'.profiles.packages.profiles_ui; diff --git a/nix/fixtures/module-repo/module/index.js b/nix/fixtures/module-repo/module/index.js deleted file mode 100644 index 02c5374..0000000 --- a/nix/fixtures/module-repo/module/index.js +++ /dev/null @@ -1 +0,0 @@ -import { } from '@holochain-open-dev/profiles'; diff --git a/nix/fixtures/module-repo/module/ui.nix b/nix/fixtures/module-repo/module/ui.nix deleted file mode 100644 index 33293b1..0000000 --- a/nix/fixtures/module-repo/module/ui.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ inputs, ... }: - -{ - perSystem = - { inputs' - , config - , pkgs - , system - , lib - , options - , self' - , ... - }: { - packages.ui = inputs.hcUtils.lib.npmPackage { - rootPath = ../.; - workspacePath = ./.; - inherit system; - }; - }; -} - - diff --git a/nix/fixtures/module-repo/package-lock.json b/nix/fixtures/module-repo/package-lock.json deleted file mode 100644 index ac37328..0000000 --- a/nix/fixtures/module-repo/package-lock.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "name": "fixture", - "version": "1.0.0", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "fixture", - "version": "1.0.0", - "license": "ISC", - "workspaces": [ - "./zome/" - ], - "dependencies": { - "zome": "file:/nix/store/aqjds5pi5s3vw0xjmzzlz0phkhz9y8qz-zome/lib" - } - }, - "../../../../../../../../nix/store/cywpx2ixlp41ni71wm22csz536w713k0--holochain-open-dev-profiles/lib": { - "name": "@holochain-open-dev/profiles", - "version": "0.17.2", - "license": "MIT", - "dependencies": { - "@holochain-open-dev/elements": "^0.8.3", - "@holochain-open-dev/stores": "^0.8.11", - "@holochain-open-dev/utils": "^0.16.2", - "@holochain/client": "^0.17.0-dev.7", - "@lit/context": "^1.0.1", - "@lit/localize": "^0.12.0", - "@mdi/js": "^7.1.96", - "@shoelace-style/shoelace": "^2.11.0", - "lit": "^3.0.2" - }, - "devDependencies": { - "@custom-elements-manifest/analyzer": "^0.5.7", - "@lit/localize-tools": "^0.6.3", - "@open-wc/eslint-config": "^2.0.0", - "@types/node": "14.11.1", - "@typescript-eslint/eslint-plugin": "^5.49.0", - "@typescript-eslint/parser": "^5.49.0", - "bestzip": "^2.2.1", - "concurrently": "^5.1.0", - "deepmerge": "^3.2.0", - "eslint": "^7.1.0", - "eslint-config-prettier": "^6.11.0", - "prettier": "^2.0.4", - "tslib": "^2.0.0", - "typescript": "^4.9.0", - "vite": "^4.0.4", - "vite-plugin-checker": "^0.5.3" - } - }, - "../../../../../../../../nix/store/hqsw2yppsm6gr4jdrqmxlrdm48j1397c--holochain-open-dev-profiles-0.0.0/lib": { - "extraneous": true - }, - "node_modules/zome": { - "resolved": "zome", - "link": true - }, - "zome": { - "version": "1.0.0", - "license": "ISC", - "dependencies": { - "@holochain-open-dev/profiles": "file:/nix/store/cywpx2ixlp41ni71wm22csz536w713k0--holochain-open-dev-profiles/lib" - } - }, - "zome/node_modules/@holochain-open-dev/profiles": { - "resolved": "../../../../../../../../nix/store/cywpx2ixlp41ni71wm22csz536w713k0--holochain-open-dev-profiles/lib", - "link": true - } - } -} diff --git a/nix/fixtures/module-repo/package.json b/nix/fixtures/module-repo/package.json index 0f0e0a9..fd664f0 100644 --- a/nix/fixtures/module-repo/package.json +++ b/nix/fixtures/module-repo/package.json @@ -4,8 +4,5 @@ "keywords": [], "license": "ISC", "name": "fixture", - "version": "1.0.0", - "workspaces": [ - "./module/" - ] + "version": "1.0.0" } diff --git a/nix/fixtures/module-repo/pnpm-lock.yaml b/nix/fixtures/module-repo/pnpm-lock.yaml new file mode 100644 index 0000000..3c2326b --- /dev/null +++ b/nix/fixtures/module-repo/pnpm-lock.yaml @@ -0,0 +1,795 @@ +lockfileVersion: '7.0' + +settings: + autoInstallPeers: true + excludeLinksFromLockfile: false + +importers: + + .: {} + + ui: + dependencies: + '@holochain-open-dev/profiles': + specifier: github:holochain-open-dev/profiles#671eb7eeb34a5cbd99af93362e7dd18ece402ffe&path:ui + version: github.com/holochain-open-dev/profiles/671eb7eeb34a5cbd99af93362e7dd18ece402ffe#path:ui(@types/react@18.2.65) + +packages: + + /@alenaksu/json-viewer@2.0.1: + resolution: {integrity: sha512-M6rN1bcuSGfar6ND9fFASBkez0UcWOUxMiwm2i9jlPBrpjOHOz0/utMgZhfrsgfyFPZ1H1gzfU8auJkYO1mq/g==} + + /@bitgo/blake2b-wasm@3.2.3: + resolution: {integrity: sha512-NaurBrMaEpjfg7EdUJgW/c6byt27O6q1ZaxB5Ita10MjjYjUu0SyYF4q7JPNxpHF/lMxb0YZakOxigbDBu9Jjw==} + + /@bitgo/blake2b@3.2.4: + resolution: {integrity: sha512-46PEgEVPxecNJ/xczggIllSxIkFIvvbVM0OfIDdNJ5qpFHUeBCkNIiGdzC3fYZlsv7bVTdUZOj79GcFBLMYBqA==} + + /@ctrl/tinycolor@4.0.3: + resolution: {integrity: sha512-e9nEVehVJwkymQpkGhdSNzLT2Lr9UTTby+JePq4Z2SxBbOQjY7pLgSouAaXvfaGQVSAaY0U4eJdwfSDmCbItcw==} + engines: {node: '>=14'} + + /@floating-ui/core@1.6.0: + resolution: {integrity: sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==} + + /@floating-ui/dom@1.6.3: + resolution: {integrity: sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==} + + /@floating-ui/utils@0.2.1: + resolution: {integrity: sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==} + + /@holo-host/identicon@0.1.0: + resolution: {integrity: sha512-Dn5pTV/m3XaK1Zvq3liw/vQUt7goM7Y84x2zUyH8cb9CNMs4kPCNHs3kalbJZ/ymzFvwcdiLwwNW8AKk+WWN5A==} + + /@holochain-open-dev/elements@0.8.4: + resolution: {integrity: sha512-9iT59XcDJyuV8m92oPAGBaHJ7MR3pDN7mSlxj4J99HqzrxFC/IK2NaPKdCc4kfmbH28ABpavppv4/5y8Ab4CAA==} + + /@holochain-open-dev/stores@0.7.16: + resolution: {integrity: sha512-hBiTq7d2fIgqMyhQHlyPWi9RMkfhjFOsQG+1MRSleIOZRPepp/IkFeg8yqjImbdEj9GgHkZQPV72JZyWAohqgg==} + + /@holochain-open-dev/stores@0.8.11: + resolution: {integrity: sha512-f6Khq0cZYuVql7NnEz61Roq0sUWfpkpOA75qxcbIOVghc66gnV9VXDtB67iCi4MYffkmKSUU654TOfjFB/kvQQ==} + + /@holochain-open-dev/utils@0.16.5: + resolution: {integrity: sha512-sLP0a+v2osR7ra8ZYadLrmSdzBV3rEl/1qKlnY2PEWJ014KK4MVC08FyJ5hu4JSzeZMhEEUkB3AELuONvcGhHA==} + + /@holochain/client@0.16.10: + resolution: {integrity: sha512-Urgx6vXNux2XD/4+eOxou2FKwlUBu/g/BxUSZLX6wEaYWH9wDYXR5f3VToUrAhXGF5ssc08jb8jLiQZ23k62EQ==} + engines: {node: '>=18.0.0 || >=20.0.0'} + + /@holochain/client@0.17.0-dev.7: + resolution: {integrity: sha512-dr0S+4Au/sS/PXu0T7Lm1uqwkPVpcWvbMBL9xD7bRv4pfWMratGdP3OpeA356l4bkpSJxkOltz2o2kN3pW3tRQ==} + engines: {node: '>=18.0.0 || >=20.0.0'} + + /@holochain/serialization@0.1.0-beta-rc.3: + resolution: {integrity: sha512-DJx4V2KXHVLciyOGjOYKTM/JLBpBEZ3RsPIRCgf7qmwhQdxXvhi2p+oFFRD51yUT5uC1/MzIVeJCl/R60PwFbw==} + + /@lit-labs/ssr-dom-shim@1.2.0: + resolution: {integrity: sha512-yWJKmpGE6lUURKAaIltoPIE/wrbY3TEkqQt+X0m+7fQNnAv0keydnYvbiJFP1PnMhizmIWRWOG5KLhYyc/xl+g==} + + /@lit/context@1.1.0: + resolution: {integrity: sha512-fCyv4dsH05wCNm3AKbB+PdYbXGJd/XT8OOwo4hVmD4COq5wOWJlQreGAMDvmHZ7osqxuu06Y4nmP6ooXpN7ErA==} + + /@lit/localize@0.12.1: + resolution: {integrity: sha512-uuF6OO6fjqomCf3jXsJ5cTGf1APYuN88S4Gvo/fjt9YkG4OMaMvpEUqd5oWhyzrJfY+HcenAbLJNi2Cq3H7gdg==} + + /@lit/react@1.0.3: + resolution: {integrity: sha512-RGoPMrAPbFjQFXFbfmYdotw000DyChehTim+d562HRXvFGw//KxouI8jNOcc3Kw/1uqUA1SJqXFtKKxK0NUrww==} + peerDependencies: + '@types/react': 17 || 18 + + /@lit/reactive-element@1.6.3: + resolution: {integrity: sha512-QuTgnG52Poic7uM1AN5yJ09QMe0O28e10XzSvWDz02TJiiKee4stsiownEIadWm8nYzyDAyT+gKzUoZmiWQtsQ==} + + /@lit/reactive-element@2.0.4: + resolution: {integrity: sha512-GFn91inaUa2oHLak8awSIigYz0cU0Payr1rcFsrkf5OJ5eSPxElyZfKh0f2p9FsTiZWXQdWGJeXZICEfXXYSXQ==} + + /@mdi/js@7.4.47: + resolution: {integrity: sha512-KPnNOtm5i2pMabqZxpUz7iQf+mfrYZyKCZ8QNz85czgEt7cuHcGorWfdzUMWYA0SD+a6Hn4FmJ+YhzzzjkTZrQ==} + + /@msgpack/msgpack@2.8.0: + resolution: {integrity: sha512-h9u4u/jiIRKbq25PM+zymTyW6bhTzELvOoUd+AvYriWOAKpLGnIamaET3pnHYoI5iYphAHBI4ayx0MehR+VVPQ==} + engines: {node: '>= 10'} + + /@open-wc/dedupe-mixin@1.4.0: + resolution: {integrity: sha512-Sj7gKl1TLcDbF7B6KUhtvr+1UCxdhMbNY5KxdU5IfMFWqL8oy1ZeAcCANjoB1TL0AJTcPmcCFsCbHf8X2jGDUA==} + + /@open-wc/scoped-elements@2.2.4: + resolution: {integrity: sha512-12X4F4QGPWcvPbxAiJ4v8wQFCOu+laZHRGfTrkoj+3JzACCtuxHG49YbuqVzQ135QPKCuhP9wA0kpGGEfUegyg==} + + /@scoped-elements/cytoscape@0.2.0: + resolution: {integrity: sha512-HrC7Pc1SCIHrDTUE883ArvljUENH9FW9qxRwzeXF8LxW5OP2+SaNJSSBaoPztmI15YHOL0aN7uuG9ozRn0EHpA==} + + /@shoelace-style/animations@1.1.0: + resolution: {integrity: sha512-Be+cahtZyI2dPKRm8EZSx3YJQ+jLvEcn3xzRP7tM4tqBnvd/eW/64Xh0iOf0t2w5P8iJKfdBbpVNE9naCaOf2g==} + + /@shoelace-style/localize@3.1.2: + resolution: {integrity: sha512-Hf45HeO+vdQblabpyZOTxJ4ZeZsmIUYXXPmoYrrR4OJ5OKxL+bhMz5mK8JXgl7HsoEowfz7+e248UGi861de9Q==} + + /@shoelace-style/shoelace@2.14.0: + resolution: {integrity: sha512-b8HXsSMvKX/9D5yCygnCkAuwZfxYof1+owJx9fYggq/bOAQ8WQcZzMBPTI4amgfwEnFzhRF8ETT+V8w+sptlww==} + engines: {node: '>=14.17.0'} + + /@tauri-apps/api@1.5.3: + resolution: {integrity: sha512-zxnDjHHKjOsrIzZm6nO5Xapb/BxqUq1tc7cGkFXsFkGTsSWgCPH1D8mm0XS9weJY2OaR73I3k3S+b7eSzJDfqA==} + engines: {node: '>= 14.6.0', npm: '>= 6.6.0', yarn: '>= 1.19.1'} + + /@types/cytoscape@3.19.16: + resolution: {integrity: sha512-A3zkjaZ6cOGyqEvrVuC1YUgiRSJhDZOj8Qhd1ALH2/+YxH2za1BOmR4RWQsKYHsc+aMP/IWoqg1COuUbZ39t/g==} + + /@types/prop-types@15.7.11: + resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==} + + /@types/react@18.2.65: + resolution: {integrity: sha512-98TsY0aW4jqx/3RqsUXwMDZSWR1Z4CUlJNue8ueS2/wcxZOsz4xmW1X8ieaWVRHcmmQM3R8xVA4XWB3dJnWwDQ==} + + /@types/scheduler@0.16.8: + resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==} + + /@types/trusted-types@2.0.7: + resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==} + + /blakejs@1.2.1: + resolution: {integrity: sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==} + + /composed-offset-position@0.0.4: + resolution: {integrity: sha512-vMlvu1RuNegVE0YsCDSV/X4X10j56mq7PCIyOKK74FxkXzGLwhOUmdkJLSdOBOMwWycobGUMgft2lp+YgTe8hw==} + + /cose-base@1.0.3: + resolution: {integrity: sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==} + + /csstype@3.1.3: + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} + + /cytoscape-cola@2.5.1: + resolution: {integrity: sha512-4/2S9bW1LvdsEPmxXN1OEAPFPbk7DvCx2c9d+TblkQAAvptGaSgtPWCByTEGgT8UxCxcVqes2aFPO5pzwo7R2w==} + peerDependencies: + cytoscape: ^3.2.0 + + /cytoscape-cose-bilkent@4.1.0: + resolution: {integrity: sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==} + peerDependencies: + cytoscape: ^3.2.0 + + /cytoscape-dagre@2.5.0: + resolution: {integrity: sha512-VG2Knemmshop4kh5fpLO27rYcyUaaDkRw+6PiX4bstpB+QFt0p2oauMrsjVbUamGWQ6YNavh7x2em2uZlzV44g==} + peerDependencies: + cytoscape: ^3.2.22 + + /cytoscape-klay@3.1.4: + resolution: {integrity: sha512-VwPj0VR25GPfy6qXVQRi/MYlZM/zkdvRhHlgqbM//lSvstgM6fhp3ik/uM8Wr8nlhskfqz/M1fIDmR6UckbS2A==} + peerDependencies: + cytoscape: ^3.2.0 + + /cytoscape@3.28.1: + resolution: {integrity: sha512-xyItz4O/4zp9/239wCcH8ZcFuuZooEeF8KHRmzjDfGdXsj3OG9MFSMA0pJE0uX3uCN/ygof6hHf4L7lst+JaDg==} + engines: {node: '>=0.10'} + + /d3-dispatch@1.0.6: + resolution: {integrity: sha512-fVjoElzjhCEy+Hbn8KygnmMS7Or0a9sI2UzGwoB7cCtvI1XpVN9GpoYlnb3xt2YV66oXYb1fLJ8GMvP4hdU1RA==} + + /d3-drag@1.2.5: + resolution: {integrity: sha512-rD1ohlkKQwMZYkQlYVCrSFxsWPzI97+W+PaEIBNTMxRuxz9RF0Hi5nJWHGVJ3Om9d2fRTe1yOBINJyy/ahV95w==} + + /d3-path@1.0.9: + resolution: {integrity: sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==} + + /d3-selection@1.4.2: + resolution: {integrity: sha512-SJ0BqYihzOjDnnlfyeHT0e30k0K1+5sR3d5fNueCNeuhZTnGw4M4o8mqJchSwgKMXCNFo+e2VTChiSJ0vYtXkg==} + + /d3-shape@1.3.7: + resolution: {integrity: sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==} + + /d3-timer@1.0.10: + resolution: {integrity: sha512-B1JDm0XDaQC+uvo4DT79H0XmBskgS3l6Ve+1SBCfxgmtIb1AVrPIoqd+nPSv+loMX8szQ0sVUhGngL7D5QPiXw==} + + /dagre@0.8.5: + resolution: {integrity: sha512-/aTqmnRta7x7MCCpExk7HQL2O4owCT2h8NT//9I1OQ9vt29Pa0BzSAkR5lwFUcQ7491yVi/3CXU9jQ5o0Mn2Sw==} + + /emittery@1.0.3: + resolution: {integrity: sha512-tJdCJitoy2lrC2ldJcqN4vkqJ00lT+tOWNT1hBJjO/3FDMJa5TTIiYGCKGkn/WfCyOzUMObeohbVTj00fhiLiA==} + engines: {node: '>=14.16'} + + /graphlib@2.1.8: + resolution: {integrity: sha512-jcLLfkpoVGmH7/InMC/1hIvOPSUh38oJtGhvrOFGzioE1DZ+0YW16RgmOJhHiuWTvGiJQ9Z1Ik43JvkRPRvE+A==} + + /heap@0.2.7: + resolution: {integrity: sha512-2bsegYkkHO+h/9MGbn6KWcE45cHZgPANo5LXF7EvWdT0yT2EguSVO1nDgU5c8+ZOPwp2vMNa7YFsJhVcDR9Sdg==} + + /is-plain-obj@4.1.0: + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} + engines: {node: '>=12'} + + /isomorphic-ws@5.0.0: + resolution: {integrity: sha512-muId7Zzn9ywDsyXgTIafTry2sV3nySZeUDe6YedVd1Hvuuep5AsIlqK+XefWpYTyJG5e503F2xIuT2lcU6rCSw==} + peerDependencies: + ws: '*' + + /js-base64@3.7.7: + resolution: {integrity: sha512-7rCnleh0z2CkXhH67J8K1Ytz0b2Y+yxTPL+/KOJoa20hfnVQ/3/T6W/KflYI4bRHRagNeXeU2bkNGI3v1oS/lw==} + + /klayjs@0.4.1: + resolution: {integrity: sha512-WUNxuO7O79TEkxCj6OIaK5TJBkaWaR/IKNTakgV9PwDn+mrr63MLHed34AcE2yTaDntgO6l0zGFIzhcoTeroTA==} + + /layout-base@1.0.2: + resolution: {integrity: sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==} + + /libsodium-wrappers@0.7.13: + resolution: {integrity: sha512-kasvDsEi/r1fMzKouIDv7B8I6vNmknXwGiYodErGuESoFTohGSKZplFtVxZqHaoQ217AynyIFgnOVRitpHs0Qw==} + + /libsodium@0.7.13: + resolution: {integrity: sha512-mK8ju0fnrKXXfleL53vtp9xiPq5hKM0zbDQtcxQIsSmxNgSxqCj6R7Hl9PkrNe2j29T4yoDaF7DJLK9/i5iWUw==} + + /lit-element@3.3.3: + resolution: {integrity: sha512-XbeRxmTHubXENkV4h8RIPyr8lXc+Ff28rkcQzw3G6up2xg5E8Zu1IgOWIwBLEQsu3cOVFqdYwiVi0hv0SlpqUA==} + + /lit-element@4.0.4: + resolution: {integrity: sha512-98CvgulX6eCPs6TyAIQoJZBCQPo80rgXR+dVBs61cstJXqtI+USQZAbA4gFHh6L/mxBx9MrgPLHLsUgDUHAcCQ==} + + /lit-html@2.8.0: + resolution: {integrity: sha512-o9t+MQM3P4y7M7yNzqAyjp7z+mQGa4NS4CxiyLqFPyFWyc4O+nodLrkrxSaCTrla6M5YOLaT3RpbbqjszB5g3Q==} + + /lit-html@3.1.2: + resolution: {integrity: sha512-3OBZSUrPnAHoKJ9AMjRL/m01YJxQMf+TMHanNtTHG68ubjnZxK0RFl102DPzsw4mWnHibfZIBJm3LWCZ/LmMvg==} + + /lit-svelte-stores@0.3.2: + resolution: {integrity: sha512-igOf4kFdpCTT+dtRJXbfhNWvNOn849MUfFJTQALE7LUsMLwaoCSvUa0DDFpTHqeMS4EjW5GEOycMy5AR+BH3PA==} + + /lit@2.8.0: + resolution: {integrity: sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==} + + /lit@3.1.2: + resolution: {integrity: sha512-VZx5iAyMtX7CV4K8iTLdCkMaYZ7ipjJZ0JcSdJ0zIdGxxyurjIn7yuuSxNBD7QmjvcNJwr0JS4cAdAtsy7gZ6w==} + + /lodash-es@4.17.21: + resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} + + /lodash@4.17.21: + resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} + + /nanoassert@1.1.0: + resolution: {integrity: sha512-C40jQ3NzfkP53NsO8kEOFd79p4b9kDXQMwgiY1z8ZwrDZgUyom0AHwGegF4Dm99L+YoYhuaB0ceerUcXmqr1rQ==} + + /nanoassert@2.0.0: + resolution: {integrity: sha512-7vO7n28+aYO4J+8w96AzhmU8G+Y/xpPDJz/se19ICsqj/momRbb9mh9ZUtkoJ5X3nTnPdhEJyc0qnM6yAsHBaA==} + + /orderedmap@2.1.1: + resolution: {integrity: sha512-TvAWxi0nDe1j/rtMcWcIj94+Ffe6n7zhow33h40SKxmsmozs6dz/e+EajymfoFcHd7sxNn8yHM8839uixMOV6g==} + + /prosemirror-commands@1.5.2: + resolution: {integrity: sha512-hgLcPaakxH8tu6YvVAaILV2tXYsW3rAdDR8WNkeKGcgeMVQg3/TMhPdVoh7iAmfgVjZGtcOSjKiQaoeKjzd2mQ==} + + /prosemirror-keymap@1.2.2: + resolution: {integrity: sha512-EAlXoksqC6Vbocqc0GtzCruZEzYgrn+iiGnNjsJsH4mrnIGex4qbLdWWNza3AW5W36ZRrlBID0eM6bdKH4OStQ==} + + /prosemirror-model@1.19.4: + resolution: {integrity: sha512-RPmVXxUfOhyFdayHawjuZCxiROsm9L4FCUA6pWI+l7n2yCBsWy9VpdE1hpDHUS8Vad661YLY9AzqfjLhAKQ4iQ==} + + /prosemirror-state@1.4.3: + resolution: {integrity: sha512-goFKORVbvPuAQaXhpbemJFRKJ2aixr+AZMGiquiqKxaucC6hlpHNZHWgz5R7dS4roHiwq9vDctE//CZ++o0W1Q==} + + /prosemirror-transform@1.8.0: + resolution: {integrity: sha512-BaSBsIMv52F1BVVMvOmp1yzD3u65uC3HTzCBQV1WDPqJRQ2LuHKcyfn0jwqodo8sR9vVzMzZyI+Dal5W9E6a9A==} + + /prosemirror-view@1.33.1: + resolution: {integrity: sha512-62qkYgSJIkwIMMCpuGuPzc52DiK1Iod6TWoIMxP4ja6BTD4yO8kCUL64PZ/WhH/dJ9fW0CDO39FhH1EMyhUFEg==} + + /qr-creator@1.0.0: + resolution: {integrity: sha512-C0cqfbS1P5hfqN4NhsYsUXePlk9BO+a45bAQ3xLYjBL3bOIFzoVEjs79Fado9u9BPBD3buHi3+vY+C8tHh4qMQ==} + + /sort-keys@5.0.0: + resolution: {integrity: sha512-Pdz01AvCAottHTPQGzndktFNdbRA75BgOfeT1hH+AMnJFv8lynkPi42rfeEhpx1saTEI3YNMWxfqu0sFD1G8pw==} + engines: {node: '>=12'} + + /svelte@3.59.2: + resolution: {integrity: sha512-vzSyuGr3eEoAtT/A6bmajosJZIUWySzY2CzB3w2pgPvnkUjGqlDnsNnA0PMO+mMAhuyMul6C2uuZzY6ELSkzyA==} + engines: {node: '>= 8'} + + /w3c-keyname@2.2.8: + resolution: {integrity: sha512-dpojBhNsCNN7T82Tm7k26A6G9ML3NkhDsnw9n/eoxSRlVBB4CEtIQ/KTCLI2Fwf3ataSXRhYFkQi3SlnFwPvPQ==} + + /webcola@3.4.0: + resolution: {integrity: sha512-4BiLXjXw3SJHo3Xd+rF+7fyClT6n7I+AR6TkBqyQ4kTsePSAMDLRCXY1f3B/kXJeP9tYn4G1TblxTO+jAt0gaw==} + + /ws@8.16.0: + resolution: {integrity: sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==} + engines: {node: '>=10.0.0'} + peerDependencies: + bufferutil: ^4.0.1 + utf-8-validate: '>=5.0.2' + peerDependenciesMeta: + bufferutil: + optional: true + utf-8-validate: + optional: true + + github.com/holochain-open-dev/profiles/671eb7eeb34a5cbd99af93362e7dd18ece402ffe#path:ui: + resolution: {path: ui, tarball: https://codeload.github.com/holochain-open-dev/profiles/tar.gz/671eb7eeb34a5cbd99af93362e7dd18ece402ffe} + name: '@holochain-open-dev/profiles' + version: 0.17.2 + +snapshots: + + /@alenaksu/json-viewer@2.0.1: + dependencies: + lit: 2.8.0 + dev: false + + /@bitgo/blake2b-wasm@3.2.3: + dependencies: + nanoassert: 1.1.0 + dev: false + + /@bitgo/blake2b@3.2.4: + dependencies: + '@bitgo/blake2b-wasm': 3.2.3 + nanoassert: 2.0.0 + dev: false + + /@ctrl/tinycolor@4.0.3: + dev: false + + /@floating-ui/core@1.6.0: + dependencies: + '@floating-ui/utils': 0.2.1 + dev: false + + /@floating-ui/dom@1.6.3: + dependencies: + '@floating-ui/core': 1.6.0 + '@floating-ui/utils': 0.2.1 + dev: false + + /@floating-ui/utils@0.2.1: + dev: false + + /@holo-host/identicon@0.1.0: + dev: false + + /@holochain-open-dev/elements@0.8.4(@types/react@18.2.65): + dependencies: + '@holo-host/identicon': 0.1.0 + '@holochain-open-dev/stores': 0.7.16(@types/react@18.2.65) + '@holochain/client': 0.16.10 + '@lit/localize': 0.12.1 + '@mdi/js': 7.4.47 + '@shoelace-style/shoelace': 2.14.0(@types/react@18.2.65) + lit: 3.1.2 + prosemirror-commands: 1.5.2 + prosemirror-keymap: 1.2.2 + prosemirror-state: 1.4.3 + prosemirror-view: 1.33.1 + transitivePeerDependencies: + - '@types/react' + - bufferutil + - utf-8-validate + dev: false + + /@holochain-open-dev/stores@0.7.16(@types/react@18.2.65): + dependencies: + '@alenaksu/json-viewer': 2.0.1 + '@holochain-open-dev/utils': 0.16.5 + '@holochain/client': 0.16.10 + '@scoped-elements/cytoscape': 0.2.0 + '@shoelace-style/shoelace': 2.14.0(@types/react@18.2.65) + lit: 3.1.2 + lit-svelte-stores: 0.3.2 + svelte: 3.59.2 + transitivePeerDependencies: + - '@types/react' + - bufferutil + - utf-8-validate + dev: false + + /@holochain-open-dev/stores@0.8.11(@types/react@18.2.65): + dependencies: + '@alenaksu/json-viewer': 2.0.1 + '@holochain-open-dev/utils': 0.16.5 + '@holochain/client': 0.16.10 + '@scoped-elements/cytoscape': 0.2.0 + '@shoelace-style/shoelace': 2.14.0(@types/react@18.2.65) + lit: 3.1.2 + lit-svelte-stores: 0.3.2 + svelte: 3.59.2 + transitivePeerDependencies: + - '@types/react' + - bufferutil + - utf-8-validate + dev: false + + /@holochain-open-dev/utils@0.16.5: + dependencies: + '@holochain/client': 0.16.10 + '@msgpack/msgpack': 2.8.0 + blakejs: 1.2.1 + emittery: 1.0.3 + lodash-es: 4.17.21 + sort-keys: 5.0.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + dev: false + + /@holochain/client@0.16.10: + dependencies: + '@bitgo/blake2b': 3.2.4 + '@holochain/serialization': 0.1.0-beta-rc.3 + '@msgpack/msgpack': 2.8.0 + '@tauri-apps/api': 1.5.3 + emittery: 1.0.3 + isomorphic-ws: 5.0.0(ws@8.16.0) + js-base64: 3.7.7 + libsodium-wrappers: 0.7.13 + lodash-es: 4.17.21 + ws: 8.16.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + dev: false + + /@holochain/client@0.17.0-dev.7: + dependencies: + '@bitgo/blake2b': 3.2.4 + '@holochain/serialization': 0.1.0-beta-rc.3 + '@msgpack/msgpack': 2.8.0 + '@tauri-apps/api': 1.5.3 + emittery: 1.0.3 + isomorphic-ws: 5.0.0(ws@8.16.0) + js-base64: 3.7.7 + libsodium-wrappers: 0.7.13 + lodash-es: 4.17.21 + ws: 8.16.0 + transitivePeerDependencies: + - bufferutil + - utf-8-validate + dev: false + + /@holochain/serialization@0.1.0-beta-rc.3: + dev: false + + /@lit-labs/ssr-dom-shim@1.2.0: + dev: false + + /@lit/context@1.1.0: + dependencies: + '@lit/reactive-element': 2.0.4 + dev: false + + /@lit/localize@0.12.1: + dependencies: + lit: 3.1.2 + dev: false + + /@lit/react@1.0.3(@types/react@18.2.65): + dependencies: + '@types/react': 18.2.65 + dev: false + + /@lit/reactive-element@1.6.3: + dependencies: + '@lit-labs/ssr-dom-shim': 1.2.0 + dev: false + + /@lit/reactive-element@2.0.4: + dependencies: + '@lit-labs/ssr-dom-shim': 1.2.0 + dev: false + + /@mdi/js@7.4.47: + dev: false + + /@msgpack/msgpack@2.8.0: + dev: false + + /@open-wc/dedupe-mixin@1.4.0: + dev: false + + /@open-wc/scoped-elements@2.2.4: + dependencies: + '@lit/reactive-element': 2.0.4 + '@open-wc/dedupe-mixin': 1.4.0 + dev: false + + /@scoped-elements/cytoscape@0.2.0: + dependencies: + '@open-wc/scoped-elements': 2.2.4 + '@types/cytoscape': 3.19.16 + cytoscape: 3.28.1 + cytoscape-cola: 2.5.1(cytoscape@3.28.1) + cytoscape-cose-bilkent: 4.1.0(cytoscape@3.28.1) + cytoscape-dagre: 2.5.0(cytoscape@3.28.1) + cytoscape-klay: 3.1.4(cytoscape@3.28.1) + lit: 2.8.0 + lodash-es: 4.17.21 + dev: false + + /@shoelace-style/animations@1.1.0: + dev: false + + /@shoelace-style/localize@3.1.2: + dev: false + + /@shoelace-style/shoelace@2.14.0(@types/react@18.2.65): + dependencies: + '@ctrl/tinycolor': 4.0.3 + '@floating-ui/dom': 1.6.3 + '@lit/react': 1.0.3(@types/react@18.2.65) + '@shoelace-style/animations': 1.1.0 + '@shoelace-style/localize': 3.1.2 + composed-offset-position: 0.0.4 + lit: 3.1.2 + qr-creator: 1.0.0 + transitivePeerDependencies: + - '@types/react' + dev: false + + /@tauri-apps/api@1.5.3: + dev: false + + /@types/cytoscape@3.19.16: + dev: false + + /@types/prop-types@15.7.11: + dev: false + + /@types/react@18.2.65: + dependencies: + '@types/prop-types': 15.7.11 + '@types/scheduler': 0.16.8 + csstype: 3.1.3 + dev: false + + /@types/scheduler@0.16.8: + dev: false + + /@types/trusted-types@2.0.7: + dev: false + + /blakejs@1.2.1: + dev: false + + /composed-offset-position@0.0.4: + dev: false + + /cose-base@1.0.3: + dependencies: + layout-base: 1.0.2 + dev: false + + /csstype@3.1.3: + dev: false + + /cytoscape-cola@2.5.1(cytoscape@3.28.1): + dependencies: + cytoscape: 3.28.1 + webcola: 3.4.0 + dev: false + + /cytoscape-cose-bilkent@4.1.0(cytoscape@3.28.1): + dependencies: + cose-base: 1.0.3 + cytoscape: 3.28.1 + dev: false + + /cytoscape-dagre@2.5.0(cytoscape@3.28.1): + dependencies: + cytoscape: 3.28.1 + dagre: 0.8.5 + dev: false + + /cytoscape-klay@3.1.4(cytoscape@3.28.1): + dependencies: + cytoscape: 3.28.1 + klayjs: 0.4.1 + dev: false + + /cytoscape@3.28.1: + dependencies: + heap: 0.2.7 + lodash: 4.17.21 + dev: false + + /d3-dispatch@1.0.6: + dev: false + + /d3-drag@1.2.5: + dependencies: + d3-dispatch: 1.0.6 + d3-selection: 1.4.2 + dev: false + + /d3-path@1.0.9: + dev: false + + /d3-selection@1.4.2: + dev: false + + /d3-shape@1.3.7: + dependencies: + d3-path: 1.0.9 + dev: false + + /d3-timer@1.0.10: + dev: false + + /dagre@0.8.5: + dependencies: + graphlib: 2.1.8 + lodash: 4.17.21 + dev: false + + /emittery@1.0.3: + dev: false + + /graphlib@2.1.8: + dependencies: + lodash: 4.17.21 + dev: false + + /heap@0.2.7: + dev: false + + /is-plain-obj@4.1.0: + dev: false + + /isomorphic-ws@5.0.0(ws@8.16.0): + dependencies: + ws: 8.16.0 + dev: false + + /js-base64@3.7.7: + dev: false + + /klayjs@0.4.1: + dev: false + + /layout-base@1.0.2: + dev: false + + /libsodium-wrappers@0.7.13: + dependencies: + libsodium: 0.7.13 + dev: false + + /libsodium@0.7.13: + dev: false + + /lit-element@3.3.3: + dependencies: + '@lit-labs/ssr-dom-shim': 1.2.0 + '@lit/reactive-element': 1.6.3 + lit-html: 2.8.0 + dev: false + + /lit-element@4.0.4: + dependencies: + '@lit-labs/ssr-dom-shim': 1.2.0 + '@lit/reactive-element': 2.0.4 + lit-html: 3.1.2 + dev: false + + /lit-html@2.8.0: + dependencies: + '@types/trusted-types': 2.0.7 + dev: false + + /lit-html@3.1.2: + dependencies: + '@types/trusted-types': 2.0.7 + dev: false + + /lit-svelte-stores@0.3.2: + dependencies: + lit: 3.1.2 + lodash-es: 4.17.21 + svelte: 3.59.2 + dev: false + + /lit@2.8.0: + dependencies: + '@lit/reactive-element': 1.6.3 + lit-element: 3.3.3 + lit-html: 2.8.0 + dev: false + + /lit@3.1.2: + dependencies: + '@lit/reactive-element': 2.0.4 + lit-element: 4.0.4 + lit-html: 3.1.2 + dev: false + + /lodash-es@4.17.21: + dev: false + + /lodash@4.17.21: + dev: false + + /nanoassert@1.1.0: + dev: false + + /nanoassert@2.0.0: + dev: false + + /orderedmap@2.1.1: + dev: false + + /prosemirror-commands@1.5.2: + dependencies: + prosemirror-model: 1.19.4 + prosemirror-state: 1.4.3 + prosemirror-transform: 1.8.0 + dev: false + + /prosemirror-keymap@1.2.2: + dependencies: + prosemirror-state: 1.4.3 + w3c-keyname: 2.2.8 + dev: false + + /prosemirror-model@1.19.4: + dependencies: + orderedmap: 2.1.1 + dev: false + + /prosemirror-state@1.4.3: + dependencies: + prosemirror-model: 1.19.4 + prosemirror-transform: 1.8.0 + prosemirror-view: 1.33.1 + dev: false + + /prosemirror-transform@1.8.0: + dependencies: + prosemirror-model: 1.19.4 + dev: false + + /prosemirror-view@1.33.1: + dependencies: + prosemirror-model: 1.19.4 + prosemirror-state: 1.4.3 + prosemirror-transform: 1.8.0 + dev: false + + /qr-creator@1.0.0: + dev: false + + /sort-keys@5.0.0: + dependencies: + is-plain-obj: 4.1.0 + dev: false + + /svelte@3.59.2: + dev: false + + /w3c-keyname@2.2.8: + dev: false + + /webcola@3.4.0: + dependencies: + d3-dispatch: 1.0.6 + d3-drag: 1.2.5 + d3-shape: 1.3.7 + d3-timer: 1.0.10 + dev: false + + /ws@8.16.0: + dev: false + + github.com/holochain-open-dev/profiles/671eb7eeb34a5cbd99af93362e7dd18ece402ffe#path:ui(@types/react@18.2.65): + id: github.com/holochain-open-dev/profiles/671eb7eeb34a5cbd99af93362e7dd18ece402ffe#path:ui + dependencies: + '@holochain-open-dev/elements': 0.8.4(@types/react@18.2.65) + '@holochain-open-dev/stores': 0.8.11(@types/react@18.2.65) + '@holochain-open-dev/utils': 0.16.5 + '@holochain/client': 0.17.0-dev.7 + '@lit/context': 1.1.0 + '@lit/localize': 0.12.1 + '@mdi/js': 7.4.47 + '@shoelace-style/shoelace': 2.14.0(@types/react@18.2.65) + lit: 3.1.2 + transitivePeerDependencies: + - '@types/react' + - bufferutil + - utf-8-validate + dev: false diff --git a/nix/fixtures/module-repo/pnpm-workspace.yaml b/nix/fixtures/module-repo/pnpm-workspace.yaml new file mode 100644 index 0000000..9b5ef56 --- /dev/null +++ b/nix/fixtures/module-repo/pnpm-workspace.yaml @@ -0,0 +1,2 @@ +packages: + - 'ui' diff --git a/nix/fixtures/module-repo/ui/index.js b/nix/fixtures/module-repo/ui/index.js new file mode 100644 index 0000000..a46e3a1 --- /dev/null +++ b/nix/fixtures/module-repo/ui/index.js @@ -0,0 +1,3 @@ +export function sayHello() { + console.log('hey'); +} diff --git a/nix/fixtures/service-repo/service/package.json b/nix/fixtures/module-repo/ui/package.json similarity index 52% rename from nix/fixtures/service-repo/service/package.json rename to nix/fixtures/module-repo/ui/package.json index c56d2e2..dc6e67b 100644 --- a/nix/fixtures/service-repo/service/package.json +++ b/nix/fixtures/module-repo/ui/package.json @@ -1,17 +1,21 @@ { - "name": "service", + "name": "my-module", "author": "", "scripts": { "build": "", "start": "node index.js" }, "dependencies": { - "module": "X" + "@holochain-open-dev/profiles": "github:holochain-open-dev/profiles#671eb7eeb34a5cbd99af93362e7dd18ece402ffe&path:ui" + }, + "exports": { + ".": "./index.js" }, "description": "", "keywords": [], "license": "ISC", "main": "index.js", + "module": "index.js", "type": "module", "version": "1.0.0" -} +} \ No newline at end of file diff --git a/nix/fixtures/module-repo/module/Cargo.toml b/nix/fixtures/module-repo/zome/Cargo.toml similarity index 100% rename from nix/fixtures/module-repo/module/Cargo.toml rename to nix/fixtures/module-repo/zome/Cargo.toml diff --git a/nix/fixtures/module-repo/module/src/lib.rs b/nix/fixtures/module-repo/zome/src/lib.rs similarity index 100% rename from nix/fixtures/module-repo/module/src/lib.rs rename to nix/fixtures/module-repo/zome/src/lib.rs diff --git a/nix/fixtures/module-repo/module/tests/sample.rs b/nix/fixtures/module-repo/zome/tests/sample.rs similarity index 100% rename from nix/fixtures/module-repo/module/tests/sample.rs rename to nix/fixtures/module-repo/zome/tests/sample.rs diff --git a/nix/fixtures/module-repo/module/zome.nix b/nix/fixtures/module-repo/zome/zome.nix similarity index 100% rename from nix/fixtures/module-repo/module/zome.nix rename to nix/fixtures/module-repo/zome/zome.nix diff --git a/nix/fixtures/service-repo/service/dna.nix b/nix/fixtures/service-repo/dna/dna.nix similarity index 93% rename from nix/fixtures/service-repo/service/dna.nix rename to nix/fixtures/service-repo/dna/dna.nix index 20f767a..8582125 100644 --- a/nix/fixtures/service-repo/service/dna.nix +++ b/nix/fixtures/service-repo/dna/dna.nix @@ -1,8 +1,6 @@ { inputs, allZomes, ... }: { - imports = [./zome/zome.nix]; - perSystem = { inputs' , config diff --git a/nix/fixtures/service-repo/service/dna.yaml b/nix/fixtures/service-repo/dna/dna.yaml similarity index 100% rename from nix/fixtures/service-repo/service/dna.yaml rename to nix/fixtures/service-repo/dna/dna.yaml diff --git a/nix/fixtures/service-repo/flake.lock b/nix/fixtures/service-repo/flake.lock index aba4b8e..cdc8ac7 100644 --- a/nix/fixtures/service-repo/flake.lock +++ b/nix/fixtures/service-repo/flake.lock @@ -204,6 +204,23 @@ "type": "github" } }, + "cargo-chef_20": { + "flake": false, + "locked": { + "lastModified": 1695999026, + "narHash": "sha256-UtLoZd7YBRSF9uXStfC3geEFqSqZXFh1rLHaP8hre0Y=", + "owner": "LukeMathWalker", + "repo": "cargo-chef", + "rev": "6e96ae5cd023b718ae40d608981e50a6e7d7facf", + "type": "github" + }, + "original": { + "owner": "LukeMathWalker", + "ref": "main", + "repo": "cargo-chef", + "type": "github" + } + }, "cargo-chef_3": { "flake": false, "locked": { @@ -527,6 +544,23 @@ "type": "github" } }, + "cargo-rdme_20": { + "flake": false, + "locked": { + "lastModified": 1675118998, + "narHash": "sha256-lrYWqu3h88fr8gG3Yo5GbFGYaq5/1Os7UtM+Af0Bg4k=", + "owner": "orium", + "repo": "cargo-rdme", + "rev": "f9dbb6bccc078f4869f45ae270a2890ac9a75877", + "type": "github" + }, + "original": { + "owner": "orium", + "ref": "v1.1.0", + "repo": "cargo-rdme", + "type": "github" + } + }, "cargo-rdme_3": { "flake": false, "locked": { @@ -1032,11 +1066,11 @@ "nixpkgs": "nixpkgs_26" }, "locked": { - "lastModified": 1709610799, - "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", + "lastModified": 1710003968, + "narHash": "sha256-g8+K+mLiNG5uch35Oy9oDQBAmGSkCcqrd0Jjme7xiG0=", "owner": "ipetkov", "repo": "crane", - "rev": "81c393c776d5379c030607866afef6406ca1be57", + "rev": "10484f86201bb94bd61ecc5335b1496794fedb78", "type": "github" }, "original": { @@ -1086,11 +1120,11 @@ "nixpkgs": "nixpkgs_29" }, "locked": { - "lastModified": 1708560786, - "narHash": "sha256-gcTA/iq9mfrwGPQsoxVryWhCAgBwL2GJLGO/s06/0wY=", + "lastModified": 1709610799, + "narHash": "sha256-5jfLQx0U9hXbi2skYMGodDJkIgffrjIOgMRjZqms2QE=", "owner": "ipetkov", "repo": "crane", - "rev": "9a5972e2e8d0b1716cc4e42af8b75eca6914fbff", + "rev": "81c393c776d5379c030607866afef6406ca1be57", "type": "github" }, "original": { @@ -1136,9 +1170,28 @@ } }, "crane_30": { + "inputs": { + "nixpkgs": "nixpkgs_31" + }, + "locked": { + "lastModified": 1708560786, + "narHash": "sha256-gcTA/iq9mfrwGPQsoxVryWhCAgBwL2GJLGO/s06/0wY=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9a5972e2e8d0b1716cc4e42af8b75eca6914fbff", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, + "crane_31": { "inputs": { "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -1165,10 +1218,11 @@ "type": "github" } }, - "crane_31": { + "crane_32": { "inputs": { "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -1194,10 +1248,11 @@ "type": "github" } }, - "crane_32": { + "crane_33": { "inputs": { "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -1222,10 +1277,11 @@ "type": "github" } }, - "crane_33": { + "crane_34": { "inputs": { "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -1249,10 +1305,11 @@ "type": "github" } }, - "crane_34": { + "crane_35": { "inputs": { "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -1275,10 +1332,11 @@ "type": "github" } }, - "crane_35": { + "crane_36": { "inputs": { "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -1300,10 +1358,11 @@ "type": "github" } }, - "crane_36": { + "crane_37": { "inputs": { "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "holochain", @@ -1324,10 +1383,11 @@ "type": "github" } }, - "crane_37": { + "crane_38": { "inputs": { "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "holochain", "nixpkgs" @@ -1347,10 +1407,11 @@ "type": "github" } }, - "crane_38": { + "crane_39": { "inputs": { "nixpkgs": [ - "profiles", + "module", + "hcUtils", "holochain", "nixpkgs" ] @@ -1387,6 +1448,28 @@ "type": "github" } }, + "crane_40": { + "inputs": { + "nixpkgs": [ + "module", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1707363936, + "narHash": "sha256-QbqyvGFYt84QNOQLOOTWplZZkzkyDhYrAl/N/9H0vFM=", + "owner": "ipetkov", + "repo": "crane", + "rev": "9107434eda6991e9388ad87b815dafa337446d16", + "type": "github" + }, + "original": { + "owner": "ipetkov", + "repo": "crane", + "type": "github" + } + }, "crane_5": { "inputs": { "nixpkgs": "nixpkgs_5" @@ -1669,6 +1752,22 @@ "type": "github" } }, + "crate2nix_20": { + "flake": false, + "locked": { + "lastModified": 1706909251, + "narHash": "sha256-T7G9Uhh77P0kKri/u+Mwa/4YnXwdPsJSwYCiJCCW+fs=", + "owner": "kolloch", + "repo": "crate2nix", + "rev": "15656bb6cb15f55ee3344bf4362e6489feb93db6", + "type": "github" + }, + "original": { + "owner": "kolloch", + "repo": "crate2nix", + "type": "github" + } + }, "crate2nix_3": { "flake": false, "locked": { @@ -1973,6 +2072,22 @@ "type": "github" } }, + "empty_20": { + "flake": false, + "locked": { + "lastModified": 1683792623, + "narHash": "sha256-pQpattmS9VmO3ZIQUFn66az8GSmB4IvYhTTCFn6SUmo=", + "owner": "steveej", + "repo": "empty", + "rev": "8e328e450e4cd32e072eba9e99fe92cf2a1ef5cf", + "type": "github" + }, + "original": { + "owner": "steveej", + "repo": "empty", + "type": "github" + } + }, "empty_3": { "flake": false, "locked": { @@ -2277,6 +2392,22 @@ "type": "github" } }, + "flake-compat_20": { + "flake": false, + "locked": { + "lastModified": 1696426674, + "narHash": "sha256-kvjfFW7WAETZlt09AgDn1MrtKzP7t90Vf7vypd3OL1U=", + "owner": "edolstra", + "repo": "flake-compat", + "rev": "0f9255e01c2351cc7d116c072cb317785dd33b33", + "type": "github" + }, + "original": { + "owner": "edolstra", + "repo": "flake-compat", + "type": "github" + } + }, "flake-compat_3": { "flake": false, "locked": { @@ -2593,6 +2724,23 @@ "type": "indirect" } }, + "flake-parts_20": { + "inputs": { + "nixpkgs-lib": "nixpkgs-lib_20" + }, + "locked": { + "lastModified": 1706830856, + "narHash": "sha256-a0NYyp+h9hlb7ddVz4LUn1vT/PLwqfrWYcHMvFB1xYg=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "b253292d9c0a5ead9bc98c4e9a26c6312e27d69f", + "type": "github" + }, + "original": { + "id": "flake-parts", + "type": "indirect" + } + }, "flake-parts_3": { "inputs": { "nixpkgs-lib": "nixpkgs-lib_3" @@ -3288,6 +3436,24 @@ "type": "github" } }, + "flake-utils_39": { + "inputs": { + "systems": "systems_39" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, "flake-utils_4": { "inputs": { "systems": "systems_4" @@ -3306,6 +3472,24 @@ "type": "github" } }, + "flake-utils_40": { + "inputs": { + "systems": "systems_40" + }, + "locked": { + "lastModified": 1705309234, + "narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=", + "owner": "numtide", + "repo": "flake-utils", + "rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "flake-utils", + "type": "github" + } + }, "flake-utils_5": { "inputs": { "systems": "systems_5" @@ -3411,12 +3595,12 @@ }, "locked": { "lastModified": 0, - "narHash": "sha256-qeSCyVa1a2gd2rzz2aUvnnc8V4wyPZnB1q+0aSYJH+w=", - "path": "../..", + "narHash": "sha256-Zu4RMRcUqc2/XHk4vVIKOI/km0UbNmufQMFwvJfur0Y=", + "path": "../../..", "type": "path" }, "original": { - "path": "../..", + "path": "../../..", "type": "path" } }, @@ -3444,9 +3628,35 @@ "inputs": { "crane": "crane_21", "hcUtils": "hcUtils_12", + "holochain": "holochain_36", + "nixpkgs": [ + "module", + "hcUtils", + "holochain", + "nixpkgs" + ], + "rust-overlay": "rust-overlay_39", + "versions": "versions_18" + }, + "locked": { + "lastModified": 0, + "narHash": "sha256-4LRKFg6bSBv0CBBxe6bDYYJqWEO5lyp5aCG7S+Zbz1E=", + "path": "../../..", + "type": "path" + }, + "original": { + "path": "../../..", + "type": "path" + } + }, + "hcUtils_12": { + "inputs": { + "crane": "crane_22", + "hcUtils": "hcUtils_13", "holochain": "holochain_34", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "holochain", "nixpkgs" @@ -3455,11 +3665,11 @@ "versions": "versions_17" }, "locked": { - "lastModified": 1710262818, - "narHash": "sha256-m/jLq+c1ciOlTjLBduZiJWgtesgr0dqiLYYHsuxGyG4=", + "lastModified": 1710328673, + "narHash": "sha256-qA1IzSbEsgd+QLOegEK8I6Frk1ryX/iFB1vXw/NYRvs=", "owner": "holochain-open-dev", "repo": "common", - "rev": "cf83886557946ac983e47300048f5b31c0667db1", + "rev": "c80094cb97c3a01e31e59773b6b2e53990191460", "type": "github" }, "original": { @@ -3468,13 +3678,14 @@ "type": "github" } }, - "hcUtils_12": { + "hcUtils_13": { "inputs": { - "crane": "crane_22", - "hcUtils": "hcUtils_13", + "crane": "crane_23", + "hcUtils": "hcUtils_14", "holochain": "holochain_32", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "holochain", @@ -3497,13 +3708,14 @@ "type": "github" } }, - "hcUtils_13": { + "hcUtils_14": { "inputs": { - "crane": "crane_23", - "hcUtils": "hcUtils_14", + "crane": "crane_24", + "hcUtils": "hcUtils_15", "holochain": "holochain_30", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -3527,13 +3739,14 @@ "type": "github" } }, - "hcUtils_14": { + "hcUtils_15": { "inputs": { - "crane": "crane_24", - "hcUtils": "hcUtils_15", + "crane": "crane_25", + "hcUtils": "hcUtils_16", "holochain": "holochain_28", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -3558,13 +3771,14 @@ "type": "github" } }, - "hcUtils_15": { + "hcUtils_16": { "inputs": { - "crane": "crane_25", - "hcUtils": "hcUtils_16", + "crane": "crane_26", + "hcUtils": "hcUtils_17", "holochain": "holochain_26", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -3590,13 +3804,14 @@ "type": "github" } }, - "hcUtils_16": { + "hcUtils_17": { "inputs": { - "crane": "crane_26", - "hcUtils": "hcUtils_17", + "crane": "crane_27", + "hcUtils": "hcUtils_18", "holochain": "holochain_24", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -3623,13 +3838,14 @@ "type": "github" } }, - "hcUtils_17": { + "hcUtils_18": { "inputs": { - "crane": "crane_27", - "hcUtils": "hcUtils_18", + "crane": "crane_28", + "hcUtils": "hcUtils_19", "holochain": "holochain_22", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -3657,13 +3873,14 @@ "type": "github" } }, - "hcUtils_18": { + "hcUtils_19": { "inputs": { - "crane": "crane_28", - "hcUtils": "hcUtils_19", + "crane": "crane_29", + "hcUtils": "hcUtils_20", "holochain": "holochain_20", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -3692,26 +3909,6 @@ "type": "github" } }, - "hcUtils_19": { - "inputs": { - "crane": "crane_29", - "nixpkgs": "nixpkgs_31", - "rust-overlay": "rust-overlay_21" - }, - "locked": { - "lastModified": 1708609246, - "narHash": "sha256-8C5Nf84Sw3vutYxACA+N1Mc+QC06SddHzA1mjls/v8w=", - "owner": "holochain-open-dev", - "repo": "common", - "rev": "e7e9cfca683aaa78dfa7959bff7b1af91aa6651b", - "type": "github" - }, - "original": { - "owner": "holochain-open-dev", - "repo": "common", - "type": "github" - } - }, "hcUtils_2": { "inputs": { "crane": "crane_2", @@ -3740,6 +3937,26 @@ "type": "github" } }, + "hcUtils_20": { + "inputs": { + "crane": "crane_30", + "nixpkgs": "nixpkgs_32", + "rust-overlay": "rust-overlay_21" + }, + "locked": { + "lastModified": 1708609246, + "narHash": "sha256-8C5Nf84Sw3vutYxACA+N1Mc+QC06SddHzA1mjls/v8w=", + "owner": "holochain-open-dev", + "repo": "common", + "rev": "e7e9cfca683aaa78dfa7959bff7b1af91aa6651b", + "type": "github" + }, + "original": { + "owner": "holochain-open-dev", + "repo": "common", + "type": "github" + } + }, "hcUtils_3": { "inputs": { "crane": "crane_3", @@ -4453,13 +4670,14 @@ "inputs": { "cargo-chef": "cargo-chef_11", "cargo-rdme": "cargo-rdme_11", - "crane": "crane_30", + "crane": "crane_31", "crate2nix": "crate2nix_11", "empty": "empty_11", "flake-compat": "flake-compat_11", "flake-parts": "flake-parts_11", "holochain": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4472,7 +4690,8 @@ "empty" ], "lair": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4485,7 +4704,8 @@ "empty" ], "launcher": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4498,12 +4718,13 @@ "empty" ], "nix-filter": "nix-filter_11", - "nixpkgs": "nixpkgs_32", + "nixpkgs": "nixpkgs_33", "pre-commit-hooks-nix": "pre-commit-hooks-nix_11", "repo-git": "repo-git_11", "rust-overlay": "rust-overlay_22", "scaffolding": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4516,7 +4737,8 @@ "empty" ], "versions": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4563,13 +4785,14 @@ "inputs": { "cargo-chef": "cargo-chef_12", "cargo-rdme": "cargo-rdme_12", - "crane": "crane_31", + "crane": "crane_32", "crate2nix": "crate2nix_12", "empty": "empty_12", "flake-compat": "flake-compat_12", "flake-parts": "flake-parts_12", "holochain": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4581,7 +4804,8 @@ "empty" ], "lair": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4593,7 +4817,8 @@ "empty" ], "launcher": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4605,12 +4830,13 @@ "empty" ], "nix-filter": "nix-filter_12", - "nixpkgs": "nixpkgs_33", + "nixpkgs": "nixpkgs_34", "pre-commit-hooks-nix": "pre-commit-hooks-nix_12", "repo-git": "repo-git_12", "rust-overlay": "rust-overlay_24", "scaffolding": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4622,7 +4848,8 @@ "empty" ], "versions": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4668,13 +4895,14 @@ "inputs": { "cargo-chef": "cargo-chef_13", "cargo-rdme": "cargo-rdme_13", - "crane": "crane_32", + "crane": "crane_33", "crate2nix": "crate2nix_13", "empty": "empty_13", "flake-compat": "flake-compat_13", "flake-parts": "flake-parts_13", "holochain": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4685,7 +4913,8 @@ "empty" ], "lair": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4696,7 +4925,8 @@ "empty" ], "launcher": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4707,12 +4937,13 @@ "empty" ], "nix-filter": "nix-filter_13", - "nixpkgs": "nixpkgs_34", + "nixpkgs": "nixpkgs_35", "pre-commit-hooks-nix": "pre-commit-hooks-nix_13", "repo-git": "repo-git_13", "rust-overlay": "rust-overlay_26", "scaffolding": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4723,7 +4954,8 @@ "empty" ], "versions": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4768,13 +5000,14 @@ "inputs": { "cargo-chef": "cargo-chef_14", "cargo-rdme": "cargo-rdme_14", - "crane": "crane_33", + "crane": "crane_34", "crate2nix": "crate2nix_14", "empty": "empty_14", "flake-compat": "flake-compat_14", "flake-parts": "flake-parts_14", "holochain": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4784,7 +5017,8 @@ "empty" ], "lair": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4794,7 +5028,8 @@ "empty" ], "launcher": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4804,12 +5039,13 @@ "empty" ], "nix-filter": "nix-filter_14", - "nixpkgs": "nixpkgs_35", + "nixpkgs": "nixpkgs_36", "pre-commit-hooks-nix": "pre-commit-hooks-nix_14", "repo-git": "repo-git_14", "rust-overlay": "rust-overlay_28", "scaffolding": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4819,7 +5055,8 @@ "empty" ], "versions": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4863,13 +5100,14 @@ "inputs": { "cargo-chef": "cargo-chef_15", "cargo-rdme": "cargo-rdme_15", - "crane": "crane_34", + "crane": "crane_35", "crate2nix": "crate2nix_15", "empty": "empty_15", "flake-compat": "flake-compat_15", "flake-parts": "flake-parts_15", "holochain": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4878,7 +5116,8 @@ "empty" ], "lair": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4887,7 +5126,8 @@ "empty" ], "launcher": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4896,12 +5136,13 @@ "empty" ], "nix-filter": "nix-filter_15", - "nixpkgs": "nixpkgs_36", + "nixpkgs": "nixpkgs_37", "pre-commit-hooks-nix": "pre-commit-hooks-nix_15", "repo-git": "repo-git_15", "rust-overlay": "rust-overlay_30", "scaffolding": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -4910,7 +5151,8 @@ "empty" ], "versions": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -5041,13 +5283,14 @@ "inputs": { "cargo-chef": "cargo-chef_16", "cargo-rdme": "cargo-rdme_16", - "crane": "crane_35", + "crane": "crane_36", "crate2nix": "crate2nix_16", "empty": "empty_16", "flake-compat": "flake-compat_16", "flake-parts": "flake-parts_16", "holochain": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -5055,7 +5298,8 @@ "empty" ], "lair": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -5063,7 +5307,8 @@ "empty" ], "launcher": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -5071,12 +5316,13 @@ "empty" ], "nix-filter": "nix-filter_16", - "nixpkgs": "nixpkgs_37", + "nixpkgs": "nixpkgs_38", "pre-commit-hooks-nix": "pre-commit-hooks-nix_16", "repo-git": "repo-git_16", "rust-overlay": "rust-overlay_32", "scaffolding": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -5084,7 +5330,8 @@ "empty" ], "versions": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -5126,46 +5373,51 @@ "inputs": { "cargo-chef": "cargo-chef_17", "cargo-rdme": "cargo-rdme_17", - "crane": "crane_36", + "crane": "crane_37", "crate2nix": "crate2nix_17", "empty": "empty_17", "flake-compat": "flake-compat_17", "flake-parts": "flake-parts_17", "holochain": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "holochain", "empty" ], "lair": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "holochain", "empty" ], "launcher": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "holochain", "empty" ], "nix-filter": "nix-filter_17", - "nixpkgs": "nixpkgs_38", + "nixpkgs": "nixpkgs_39", "pre-commit-hooks-nix": "pre-commit-hooks-nix_17", "repo-git": "repo-git_17", "rust-overlay": "rust-overlay_34", "scaffolding": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "holochain", "empty" ], "versions": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "versions" @@ -5206,42 +5458,47 @@ "inputs": { "cargo-chef": "cargo-chef_18", "cargo-rdme": "cargo-rdme_18", - "crane": "crane_37", + "crane": "crane_38", "crate2nix": "crate2nix_18", "empty": "empty_18", "flake-compat": "flake-compat_18", "flake-parts": "flake-parts_18", "holochain": [ - "profiles", + "module", + "hcUtils", "hcUtils", "holochain", "empty" ], "lair": [ - "profiles", + "module", + "hcUtils", "hcUtils", "holochain", "empty" ], "launcher": [ - "profiles", + "module", + "hcUtils", "hcUtils", "holochain", "empty" ], "nix-filter": "nix-filter_18", - "nixpkgs": "nixpkgs_39", + "nixpkgs": "nixpkgs_40", "pre-commit-hooks-nix": "pre-commit-hooks-nix_18", "repo-git": "repo-git_18", "rust-overlay": "rust-overlay_36", "scaffolding": [ - "profiles", + "module", + "hcUtils", "hcUtils", "holochain", "empty" ], "versions": [ - "profiles", + "module", + "hcUtils", "hcUtils", "versions" ] @@ -5281,47 +5538,52 @@ "inputs": { "cargo-chef": "cargo-chef_19", "cargo-rdme": "cargo-rdme_19", - "crane": "crane_38", + "crane": "crane_39", "crate2nix": "crate2nix_19", "empty": "empty_19", "flake-compat": "flake-compat_19", "flake-parts": "flake-parts_19", "holochain": [ - "profiles", + "module", + "hcUtils", "holochain", "empty" ], "lair": [ - "profiles", + "module", + "hcUtils", "holochain", "empty" ], "launcher": [ - "profiles", + "module", + "hcUtils", "holochain", "empty" ], "nix-filter": "nix-filter_19", - "nixpkgs": "nixpkgs_40", + "nixpkgs": "nixpkgs_41", "pre-commit-hooks-nix": "pre-commit-hooks-nix_19", "repo-git": "repo-git_19", "rust-overlay": "rust-overlay_38", "scaffolding": [ - "profiles", + "module", + "hcUtils", "holochain", "empty" ], "versions": [ - "profiles", + "module", + "hcUtils", "versions" ] }, "locked": { - "lastModified": 1710225101, - "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", "owner": "holochain", "repo": "holochain", - "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", "type": "github" }, "original": { @@ -5348,6 +5610,59 @@ } }, "holochain_38": { + "inputs": { + "cargo-chef": "cargo-chef_20", + "cargo-rdme": "cargo-rdme_20", + "crane": "crane_40", + "crate2nix": "crate2nix_20", + "empty": "empty_20", + "flake-compat": "flake-compat_20", + "flake-parts": "flake-parts_20", + "holochain": [ + "module", + "holochain", + "empty" + ], + "lair": [ + "module", + "holochain", + "empty" + ], + "launcher": [ + "module", + "holochain", + "empty" + ], + "nix-filter": "nix-filter_20", + "nixpkgs": "nixpkgs_42", + "pre-commit-hooks-nix": "pre-commit-hooks-nix_20", + "repo-git": "repo-git_20", + "rust-overlay": "rust-overlay_40", + "scaffolding": [ + "module", + "holochain", + "empty" + ], + "versions": [ + "module", + "versions" + ] + }, + "locked": { + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", + "owner": "holochain", + "repo": "holochain", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "type": "github" + }, + "original": { + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, + "holochain_39": { "flake": false, "locked": { "lastModified": 1709687030, @@ -5381,6 +5696,23 @@ "type": "github" } }, + "holochain_40": { + "flake": false, + "locked": { + "lastModified": 1709687030, + "narHash": "sha256-aaixbhm+R0urE900zRpIhHWQUOtQCP2gAAxz+jcx80s=", + "owner": "holochain", + "repo": "holochain", + "rev": "cb671524080332983281baa2db7c1851344e79d2", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-0.3.0-beta-dev.39", + "repo": "holochain", + "type": "github" + } + }, "holochain_5": { "inputs": { "cargo-chef": "cargo-chef_3", @@ -5853,6 +6185,23 @@ "type": "github" } }, + "lair_20": { + "flake": false, + "locked": { + "lastModified": 1706569525, + "narHash": "sha256-e8zYqElBSQgELs1zFYEco2P6qf63NcI2Ftqt1gb2OIs=", + "owner": "holochain", + "repo": "lair", + "rev": "8f01e989372b2d60714ba4774c0a1e2e2c961cf7", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "lair_keystore-v0.4.3", + "repo": "lair", + "type": "github" + } + }, "lair_3": { "flake": false, "locked": { @@ -6176,6 +6525,23 @@ "type": "github" } }, + "launcher_20": { + "flake": false, + "locked": { + "lastModified": 1706294585, + "narHash": "sha256-92Qc6hBMFfHo3w1m1+EpNAAV+7whpkgRHiGqNiXaMCg=", + "owner": "holochain", + "repo": "launcher", + "rev": "51a45a7141abc98a861b34b288b384f50f359485", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "launcher", + "type": "github" + } + }, "launcher_3": { "flake": false, "locked": { @@ -6295,6 +6661,28 @@ "type": "github" } }, + "module": { + "inputs": { + "hcUtils": "hcUtils_11", + "holochain": "holochain_38", + "nixpkgs": [ + "module", + "holochain", + "nixpkgs" + ], + "versions": "versions_19" + }, + "locked": { + "lastModified": 1, + "narHash": "sha256-R8YViyZivqge9YqTfxQICSGHmG+pfItaJz3LljMpfGU=", + "path": "../module-repo", + "type": "path" + }, + "original": { + "path": "../module-repo", + "type": "path" + } + }, "nix-filter": { "locked": { "lastModified": 1705332318, @@ -6475,6 +6863,21 @@ "type": "github" } }, + "nix-filter_20": { + "locked": { + "lastModified": 1705332318, + "narHash": "sha256-kcw1yFeJe9N4PjQji9ZeX47jg0p9A0DuU4djKvg1a7I=", + "owner": "numtide", + "repo": "nix-filter", + "rev": "3449dc925982ad46246cfc36469baf66e1b64f17", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nix-filter", + "type": "github" + } + }, "nix-filter_3": { "locked": { "lastModified": 1705332318, @@ -6758,7 +7161,25 @@ "type": "github" } }, - "nixpkgs-lib_18": { + "nixpkgs-lib_18": { + "locked": { + "dir": "lib", + "lastModified": 1706550542, + "narHash": "sha256-UcsnCG6wx++23yeER4Hg18CXWbgNpqNXcHIo5/1Y+hc=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "97b17f32362e475016f942bbdfda4a4a72a8a652", + "type": "github" + }, + "original": { + "dir": "lib", + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs-lib_19": { "locked": { "dir": "lib", "lastModified": 1706550542, @@ -6776,7 +7197,7 @@ "type": "github" } }, - "nixpkgs-lib_19": { + "nixpkgs-lib_2": { "locked": { "dir": "lib", "lastModified": 1706550542, @@ -6794,7 +7215,7 @@ "type": "github" } }, - "nixpkgs-lib_2": { + "nixpkgs-lib_20": { "locked": { "dir": "lib", "lastModified": 1706550542, @@ -7249,11 +7670,11 @@ }, "nixpkgs_29": { "locked": { - "lastModified": 1706925685, - "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", + "lastModified": 1709386671, + "narHash": "sha256-VPqfBnIJ+cfa78pd4Y5Cr6sOWVW8GYHRVucxJGmRf8Q=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", + "rev": "fa9a51752f1b5de583ad5213eb621be071806663", "type": "github" }, "original": { @@ -7296,6 +7717,22 @@ } }, "nixpkgs_31": { + "locked": { + "lastModified": 1706925685, + "narHash": "sha256-hVInjWMmgH4yZgA4ZtbgJM1qEAel72SYhP5nOWX4UIM=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "79a13f1437e149dc7be2d1290c74d378dad60814", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixpkgs_32": { "locked": { "lastModified": 1708603017, "narHash": "sha256-YVMXAorB6bE+y3nFJY0OUfQERI3tyLTDqd6zuPfewp8=", @@ -7310,7 +7747,7 @@ "type": "github" } }, - "nixpkgs_32": { + "nixpkgs_33": { "locked": { "lastModified": 1708475490, "narHash": "sha256-g1v0TsWBQPX97ziznfJdWhgMyMGtoBFs102xSYO4syU=", @@ -7325,7 +7762,7 @@ "type": "indirect" } }, - "nixpkgs_33": { + "nixpkgs_34": { "locked": { "lastModified": 1709479366, "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", @@ -7340,7 +7777,7 @@ "type": "indirect" } }, - "nixpkgs_34": { + "nixpkgs_35": { "locked": { "lastModified": 1709479366, "narHash": "sha256-n6F0n8UV6lnTZbYPl1A9q1BS0p4hduAv1mGAP17CVd0=", @@ -7355,7 +7792,7 @@ "type": "indirect" } }, - "nixpkgs_35": { + "nixpkgs_36": { "locked": { "lastModified": 1709703039, "narHash": "sha256-6hqgQ8OK6gsMu1VtcGKBxKQInRLHtzulDo9Z5jxHEFY=", @@ -7370,21 +7807,6 @@ "type": "indirect" } }, - "nixpkgs_36": { - "locked": { - "lastModified": 1709961763, - "narHash": "sha256-6H95HGJHhEZtyYA3rIQpvamMKAGoa8Yh2rFV29QnuGw=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "3030f185ba6a4bf4f18b87f345f104e6a6961f34", - "type": "github" - }, - "original": { - "id": "nixpkgs", - "ref": "nixos-unstable", - "type": "indirect" - } - }, "nixpkgs_37": { "locked": { "lastModified": 1709961763, @@ -7461,6 +7883,36 @@ "type": "indirect" } }, + "nixpkgs_41": { + "locked": { + "lastModified": 1710272261, + "narHash": "sha256-g0bDwXFmTE7uGDOs9HcJsfLFhH7fOsASbAuOzDC+fhQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0ad13a6833440b8e238947e47bea7f11071dc2b2", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, + "nixpkgs_42": { + "locked": { + "lastModified": 1710272261, + "narHash": "sha256-g0bDwXFmTE7uGDOs9HcJsfLFhH7fOsASbAuOzDC+fhQ=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "0ad13a6833440b8e238947e47bea7f11071dc2b2", + "type": "github" + }, + "original": { + "id": "nixpkgs", + "ref": "nixos-unstable", + "type": "indirect" + } + }, "nixpkgs_5": { "locked": { "lastModified": 1709386671, @@ -7733,7 +8185,7 @@ "type": "github" } }, - "pre-commit-hooks-nix_3": { + "pre-commit-hooks-nix_20": { "flake": false, "locked": { "lastModified": 1707297608, @@ -7749,7 +8201,7 @@ "type": "github" } }, - "pre-commit-hooks-nix_4": { + "pre-commit-hooks-nix_3": { "flake": false, "locked": { "lastModified": 1707297608, @@ -7765,7 +8217,7 @@ "type": "github" } }, - "pre-commit-hooks-nix_5": { + "pre-commit-hooks-nix_4": { "flake": false, "locked": { "lastModified": 1707297608, @@ -7781,7 +8233,7 @@ "type": "github" } }, - "pre-commit-hooks-nix_6": { + "pre-commit-hooks-nix_5": { "flake": false, "locked": { "lastModified": 1707297608, @@ -7797,7 +8249,7 @@ "type": "github" } }, - "pre-commit-hooks-nix_7": { + "pre-commit-hooks-nix_6": { "flake": false, "locked": { "lastModified": 1707297608, @@ -7813,7 +8265,7 @@ "type": "github" } }, - "pre-commit-hooks-nix_8": { + "pre-commit-hooks-nix_7": { "flake": false, "locked": { "lastModified": 1707297608, @@ -7829,7 +8281,7 @@ "type": "github" } }, - "pre-commit-hooks-nix_9": { + "pre-commit-hooks-nix_8": { "flake": false, "locked": { "lastModified": 1707297608, @@ -7845,29 +8297,19 @@ "type": "github" } }, - "profiles": { - "inputs": { - "hcUtils": "hcUtils_11", - "holochain": "holochain_36", - "nixpkgs": [ - "profiles", - "holochain", - "nixpkgs" - ], - "versions": "versions_18" - }, + "pre-commit-hooks-nix_9": { + "flake": false, "locked": { - "lastModified": 1710262853, - "narHash": "sha256-z7RieH95tb4MzU4wFDG197zx4Ei6XFgnzwLp5fGgPiU=", - "owner": "holochain-open-dev", - "repo": "profiles", - "rev": "81216b4408c14505c3b5533a8cd01347f9cb70e1", + "lastModified": 1707297608, + "narHash": "sha256-ADjo/5VySGlvtCW3qR+vdFF4xM9kJFlRDqcC9ZGI8EA=", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", + "rev": "0db2e67ee49910adfa13010e7f012149660af7f0", "type": "github" }, "original": { - "owner": "holochain-open-dev", - "ref": "nixify", - "repo": "profiles", + "owner": "cachix", + "repo": "pre-commit-hooks.nix", "type": "github" } }, @@ -8015,6 +8457,18 @@ "url": "file:/dev/null" } }, + "repo-git_20": { + "flake": false, + "locked": { + "narHash": "sha256-d6xi4mKdjkX2JFicDIv5niSzpyI0m/Hnm8GGAIU04kY=", + "type": "file", + "url": "file:/dev/null" + }, + "original": { + "type": "file", + "url": "file:/dev/null" + } + }, "repo-git_3": { "flake": false, "locked": { @@ -8103,12 +8557,12 @@ "inputs": { "hcUtils": "hcUtils", "holochain": "holochain_19", + "module": "module", "nixpkgs": [ "holochain", "nixpkgs" ], - "profiles": "profiles", - "versions": "versions_19" + "versions": "versions_20" } }, "rust-overlay": { @@ -8444,7 +8898,8 @@ "inputs": { "flake-utils": "flake-utils_21", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8475,7 +8930,8 @@ "inputs": { "flake-utils": "flake-utils_22", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8506,7 +8962,8 @@ "inputs": { "flake-utils": "flake-utils_23", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8536,7 +8993,8 @@ "inputs": { "flake-utils": "flake-utils_24", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8566,7 +9024,8 @@ "inputs": { "flake-utils": "flake-utils_25", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8595,7 +9054,8 @@ "inputs": { "flake-utils": "flake-utils_26", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8624,7 +9084,8 @@ "inputs": { "flake-utils": "flake-utils_27", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8652,7 +9113,8 @@ "inputs": { "flake-utils": "flake-utils_28", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8680,7 +9142,8 @@ "inputs": { "flake-utils": "flake-utils_29", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8737,7 +9200,8 @@ "inputs": { "flake-utils": "flake-utils_30", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8764,7 +9228,8 @@ "inputs": { "flake-utils": "flake-utils_31", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8790,7 +9255,8 @@ "inputs": { "flake-utils": "flake-utils_32", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8816,7 +9282,8 @@ "inputs": { "flake-utils": "flake-utils_33", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "hcUtils", @@ -8841,7 +9308,8 @@ "inputs": { "flake-utils": "flake-utils_34", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "holochain", @@ -8866,7 +9334,8 @@ "inputs": { "flake-utils": "flake-utils_35", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "hcUtils", "nixpkgs" @@ -8890,7 +9359,8 @@ "inputs": { "flake-utils": "flake-utils_36", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "holochain", "nixpkgs" @@ -8914,7 +9384,8 @@ "inputs": { "flake-utils": "flake-utils_37", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "hcUtils", "nixpkgs" ] @@ -8937,17 +9408,41 @@ "inputs": { "flake-utils": "flake-utils_38", "nixpkgs": [ - "profiles", + "module", + "hcUtils", "holochain", "nixpkgs" ] }, "locked": { - "lastModified": 1710209426, - "narHash": "sha256-A7bXK9k6RdBGsmqU4DxHqDBty7kKNkh8Pv+iGE2i1Ac=", + "lastModified": 1710295923, + "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", "owner": "oxalica", "repo": "rust-overlay", - "rev": "405cdc2652fa89f2fcf392335d5b9364b0adc5c2", + "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, + "rust-overlay_39": { + "inputs": { + "flake-utils": "flake-utils_39", + "nixpkgs": [ + "module", + "hcUtils", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710295923, + "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", "type": "github" }, "original": { @@ -8986,6 +9481,29 @@ "type": "github" } }, + "rust-overlay_40": { + "inputs": { + "flake-utils": "flake-utils_40", + "nixpkgs": [ + "module", + "holochain", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1710295923, + "narHash": "sha256-B7wIarZOh5nNnj4GTOOYcxAwVGTO8y0dRSOzd6PtYE8=", + "owner": "oxalica", + "repo": "rust-overlay", + "rev": "a30facbf72f29e5c930f394f637559f46a855e8b", + "type": "github" + }, + "original": { + "owner": "oxalica", + "repo": "rust-overlay", + "type": "github" + } + }, "rust-overlay_5": { "inputs": { "flake-utils": "flake-utils_5", @@ -9331,6 +9849,23 @@ "type": "github" } }, + "scaffolding_20": { + "flake": false, + "locked": { + "lastModified": 1708377063, + "narHash": "sha256-5+iEjwMO/sTe1h9JVrfn77GjliIRVJQFS2yvI3KTsL8=", + "owner": "holochain", + "repo": "scaffolding", + "rev": "c41f01d2ff19fe58b6632860d85f88a96e16fd65", + "type": "github" + }, + "original": { + "owner": "holochain", + "ref": "holochain-weekly", + "repo": "scaffolding", + "type": "github" + } + }, "scaffolding_3": { "flake": false, "locked": { @@ -9930,6 +10465,21 @@ "type": "github" } }, + "systems_39": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, "systems_4": { "locked": { "lastModified": 1681028828, @@ -9945,6 +10495,21 @@ "type": "github" } }, + "systems_40": { + "locked": { + "lastModified": 1681028828, + "narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=", + "owner": "nix-systems", + "repo": "default", + "rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e", + "type": "github" + }, + "original": { + "owner": "nix-systems", + "repo": "default", + "type": "github" + } + }, "systems_5": { "locked": { "lastModified": 1681028828, @@ -10236,11 +10801,11 @@ }, "locked": { "dir": "versions/weekly", - "lastModified": 1710225101, - "narHash": "sha256-vf2FT9x5Ua8/LA4TGXss2Y3y6xokwBauCDKsK9PcH3g=", + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", "owner": "holochain", "repo": "holochain", - "rev": "eff052624aa039576c6b4d4598a7ad860a7afd50", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", "type": "github" }, "original": { @@ -10252,7 +10817,7 @@ }, "versions_19": { "inputs": { - "holochain": "holochain_38", + "holochain": "holochain_39", "lair": "lair_19", "launcher": "launcher_19", "scaffolding": "scaffolding_19" @@ -10296,6 +10861,29 @@ "type": "github" } }, + "versions_20": { + "inputs": { + "holochain": "holochain_40", + "lair": "lair_20", + "launcher": "launcher_20", + "scaffolding": "scaffolding_20" + }, + "locked": { + "dir": "versions/weekly", + "lastModified": 1710333296, + "narHash": "sha256-dd/IQWaKn5961j+6SG1dj72BoqecJaplaPUSrnPl5k0=", + "owner": "holochain", + "repo": "holochain", + "rev": "8df021ce492a9fee97a5fb1168ab0c970f995701", + "type": "github" + }, + "original": { + "dir": "versions/weekly", + "owner": "holochain", + "repo": "holochain", + "type": "github" + } + }, "versions_3": { "inputs": { "holochain": "holochain_6", diff --git a/nix/fixtures/service-repo/flake.nix b/nix/fixtures/service-repo/flake.nix index e25f9f6..1d7d149 100644 --- a/nix/fixtures/service-repo/flake.nix +++ b/nix/fixtures/service-repo/flake.nix @@ -17,7 +17,7 @@ outputs = inputs @ { ... }: let holochainSources = inputs': with inputs'; [ - profiles + module # ... and add the name of the repository here as well ]; @@ -28,7 +28,7 @@ # All holochain packages from this _and_ the upstream repositories, combined allHolochainPackages = { inputs', self' }: inputs.nixpkgs.lib.attrsets.mergeAttrsList [ self'.packages - (upstreamHolochainPackages inputs') + (upstreamHolochainPackages { inherit inputs'; }) ]; allZomes = { inputs', self' }: inputs.hcUtils.outputs.lib.filterZomes (allHolochainPackages { inherit inputs' self'; }); allDnas = { inputs', self' }: inputs.hcUtils.outputs.lib.filterDnas (allHolochainPackages { inherit inputs' self'; }); @@ -45,8 +45,7 @@ } { imports = [ - ./service/dna.nix - ./service/ui.nix + ./dna/dna.nix ]; systems = builtins.attrNames inputs.holochain.devShells; @@ -65,14 +64,14 @@ nodejs_20 # more packages go here cargo-nextest - # (inputs.hcUtils.lib.syncNpmDependenciesWithNix { - # inherit system; - # holochainPackages = upstreamNpmPackages {inherit inputs';}; - # }) + (inputs.hcUtils.lib.syncNpmDependenciesWithNix { + inherit system; + holochainPackages = upstreamNpmPackages { inherit inputs'; }; + }) ]; shellHook = '' - # sync-npm-dependencies-with-nix + sync-npm-dependencies-with-nix ''; }; # packages.i = inputs'.profiles.packages.profiles_ui; diff --git a/nix/fixtures/service-repo/package-lock.json b/nix/fixtures/service-repo/package-lock.json deleted file mode 100644 index ac37328..0000000 --- a/nix/fixtures/service-repo/package-lock.json +++ /dev/null @@ -1,71 +0,0 @@ -{ - "name": "fixture", - "version": "1.0.0", - "lockfileVersion": 3, - "requires": true, - "packages": { - "": { - "name": "fixture", - "version": "1.0.0", - "license": "ISC", - "workspaces": [ - "./zome/" - ], - "dependencies": { - "zome": "file:/nix/store/aqjds5pi5s3vw0xjmzzlz0phkhz9y8qz-zome/lib" - } - }, - "../../../../../../../../nix/store/cywpx2ixlp41ni71wm22csz536w713k0--holochain-open-dev-profiles/lib": { - "name": "@holochain-open-dev/profiles", - "version": "0.17.2", - "license": "MIT", - "dependencies": { - "@holochain-open-dev/elements": "^0.8.3", - "@holochain-open-dev/stores": "^0.8.11", - "@holochain-open-dev/utils": "^0.16.2", - "@holochain/client": "^0.17.0-dev.7", - "@lit/context": "^1.0.1", - "@lit/localize": "^0.12.0", - "@mdi/js": "^7.1.96", - "@shoelace-style/shoelace": "^2.11.0", - "lit": "^3.0.2" - }, - "devDependencies": { - "@custom-elements-manifest/analyzer": "^0.5.7", - "@lit/localize-tools": "^0.6.3", - "@open-wc/eslint-config": "^2.0.0", - "@types/node": "14.11.1", - "@typescript-eslint/eslint-plugin": "^5.49.0", - "@typescript-eslint/parser": "^5.49.0", - "bestzip": "^2.2.1", - "concurrently": "^5.1.0", - "deepmerge": "^3.2.0", - "eslint": "^7.1.0", - "eslint-config-prettier": "^6.11.0", - "prettier": "^2.0.4", - "tslib": "^2.0.0", - "typescript": "^4.9.0", - "vite": "^4.0.4", - "vite-plugin-checker": "^0.5.3" - } - }, - "../../../../../../../../nix/store/hqsw2yppsm6gr4jdrqmxlrdm48j1397c--holochain-open-dev-profiles-0.0.0/lib": { - "extraneous": true - }, - "node_modules/zome": { - "resolved": "zome", - "link": true - }, - "zome": { - "version": "1.0.0", - "license": "ISC", - "dependencies": { - "@holochain-open-dev/profiles": "file:/nix/store/cywpx2ixlp41ni71wm22csz536w713k0--holochain-open-dev-profiles/lib" - } - }, - "zome/node_modules/@holochain-open-dev/profiles": { - "resolved": "../../../../../../../../nix/store/cywpx2ixlp41ni71wm22csz536w713k0--holochain-open-dev-profiles/lib", - "link": true - } - } -} diff --git a/nix/fixtures/service-repo/package.json b/nix/fixtures/service-repo/package.json index b5ad65a..ba1329b 100644 --- a/nix/fixtures/service-repo/package.json +++ b/nix/fixtures/service-repo/package.json @@ -6,6 +6,6 @@ "name": "fixture", "version": "1.0.0", "workspaces": [ - "./service/" + "./ui/" ] -} +} \ No newline at end of file diff --git a/nix/fixtures/service-repo/service/index.js b/nix/fixtures/service-repo/service/index.js deleted file mode 100644 index 02c5374..0000000 --- a/nix/fixtures/service-repo/service/index.js +++ /dev/null @@ -1 +0,0 @@ -import { } from '@holochain-open-dev/profiles'; diff --git a/nix/fixtures/service-repo/service/ui.nix b/nix/fixtures/service-repo/service/ui.nix deleted file mode 100644 index 33293b1..0000000 --- a/nix/fixtures/service-repo/service/ui.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ inputs, ... }: - -{ - perSystem = - { inputs' - , config - , pkgs - , system - , lib - , options - , self' - , ... - }: { - packages.ui = inputs.hcUtils.lib.npmPackage { - rootPath = ../.; - workspacePath = ./.; - inherit system; - }; - }; -} - - diff --git a/nix/fixtures/service-repo/ui/index.js b/nix/fixtures/service-repo/ui/index.js new file mode 100644 index 0000000..007df96 --- /dev/null +++ b/nix/fixtures/service-repo/ui/index.js @@ -0,0 +1 @@ +export { sayHello } from 'my-module'; diff --git a/nix/fixtures/module-repo/module/package.json b/nix/fixtures/service-repo/ui/package.json similarity index 90% rename from nix/fixtures/module-repo/module/package.json rename to nix/fixtures/service-repo/ui/package.json index 49caa4a..1a7158a 100644 --- a/nix/fixtures/module-repo/module/package.json +++ b/nix/fixtures/service-repo/ui/package.json @@ -1,5 +1,5 @@ { - "name": "module", + "name": "my-service", "author": "", "scripts": { "build": "", diff --git a/nix/npm-package.nix b/nix/npm-package.nix index af2a4d5..c9a533b 100644 --- a/nix/npm-package.nix +++ b/nix/npm-package.nix @@ -18,28 +18,74 @@ let workspacePathSplit = pkgs.lib.strings.splitString "/" workspacePath; npmWorkspace = pkgs.lib.lists.sublist (builtins.length rootPathSplit) (builtins.length workspacePathSplit) workspacePathSplit; - builtNodeModules = pkgs.buildNpmPackage { - pname = packageJson.name; - version = packageJson.version; - dontNpmPrune = true; - src = rootPath; - npmWorkspace = "./${pkgs.lib.strings.concatStringsSep "/" npmWorkspace}"; - npmDeps = pkgs.importNpmLock { - npmRoot = rootPath; - }; - npmConfigHook = pkgs.importNpmLock.npmConfigHook; + # builtNodeModules = pkgs.buildNpmPackage { + # pname = packageJson.name; + # version = packageJson.version; + # dontNpmPrune = true; + # src = rootPath; + # npmWorkspace = "./${pkgs.lib.strings.concatStringsSep "/" npmWorkspace}"; + # npmDeps = pkgs.importNpmLock { + # npmRoot = rootPath; + # }; + # npmConfigHook = pkgs.importNpmLock.npmConfigHook; + # }; + # Read the package-lock.json as a Nix attrset + packageLock = builtins.fromJSON (builtins.readFile (rootPath + "/package-lock.json")); + + # Create an array of all (meaningful) dependencies + deps = builtins.attrValues (removeAttrs packageLock.packages [ "" ]) + # ++ builtins.attrValues (removeAttrs packageLock.dependencies [ "" ]) + ; + + # Turn each dependency into a fetchurl call + tarballs = map (p: pkgs.fetchurl { url = p.resolved; hash = p.integrity; }) deps; + + # Write a file with the list of tarballs + tarballsFile = pkgs.writeTextFile { + name = "tarballs"; + text = builtins.concatStringsSep "\n" tarballs; }; + in - pkgs.runCommandLocal packageJson.name { + pkgs.stdenv.mkDerivation { + inherit (packageLock) name version; + src = rootPath; + buildInputs = [ pkgs.nodejs ]; + buildPhase = '' + export HOME=$PWD/.home + export npm_config_cache=$PWD/.npm + mkdir -p $out/js + cd $out/js + cp -r $src/. . + + while read package + do + echo "caching $package" + npm cache add "$package" + done <${tarballsFile} + + npm ci + ''; + + installPhase = '' + ln -s $out/js/node_modules/.bin $out/bin + ''; meta = { holochainPackageType = "npm"; packageName = packageJson.name; }; - } '' - set -e - cd ${builtNodeModules}/lib/node_modules/${rootPackageJson.name} - mkdir $out - mkdir $out/lib - ${pkgs.rsync}/bin/rsync -aP ./* $out/lib - '' + } + + # pkgs.runCommandLocal packageJson.name { + # meta = { + # holochainPackageType = "npm"; + # packageName = packageJson.name; + # }; + # } '' + # set -e + # cd ${builtNodeModules}/lib/node_modules/${rootPackageJson.name}/lib + # mkdir $out + # mkdir $out/lib + # ${pkgs.rsync}/bin/rsync -aP ./* $out/lib + # '' # ${pkgs.rsync}/bin/rsync -aP --exclude=node_modules ./* $out/lib