From ccba68beb7bdbcec6aeae9c62cd8096d331abe65 Mon Sep 17 00:00:00 2001 From: "guillem.cordoba" Date: Tue, 5 Mar 2024 15:14:43 +0100 Subject: [PATCH] WIP --- flake.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/flake.nix b/flake.nix index 868a014..34cc201 100644 --- a/flake.nix +++ b/flake.nix @@ -33,6 +33,10 @@ filterDnas = filterByHolochainPackageType "dna"; filterHapps = filterByHolochainPackageType "happ"; + filterZomesFromSources = sources: builtins.foldl' (acc: source: acc // filterZomes source) {} sources; + filterDnasFromSources = sources: builtins.foldl' (acc: source: acc // filterDnas source) {} sources; + filterHappsFromSources = sources: builtins.foldl' (acc: source: acc // filterHapps source) {} sources; + rustZome = { cratePath, holochain, workspacePath, excludedCrates ? [] }: let system = holochain.devShells.holonix.system;