nix: Export all tools on each toolbox

This allows targeting each tool separately for installs.
This commit is contained in:
Wolfgang Walther
2024-02-26 22:06:01 +01:00
parent 08901323a3
commit c7eb4036a1
12 changed files with 51 additions and 45 deletions
+7 -6
View File
@@ -73,10 +73,11 @@ in
buildToolbox
{
name = "postgrest-cabal";
tools = [
build
clean
run
repl
];
tools = {
inherit
build
clean
run
repl;
};
}