-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed serde tag in LinkDeleted, updated packages
- Loading branch information
1 parent
9d4e854
commit 2836bf0
Showing
17 changed files
with
784 additions
and
458 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,29 @@ | ||
{ | ||
description = "Template for Holochain app development"; | ||
|
||
inputs = { | ||
nixpkgs.follows = "holochain/nixpkgs"; | ||
|
||
versions.url = "github:holochain/holochain?dir=versions/weekly"; | ||
versions.url = "github:holochain/holochain?dir=versions/0_3"; | ||
|
||
holochain = { | ||
url = "github:holochain/holochain"; | ||
inputs.versions.follows = "versions"; | ||
}; | ||
}; | ||
|
||
outputs = inputs @ { ... }: | ||
inputs.holochain.inputs.flake-parts.lib.mkFlake | ||
{ | ||
inherit inputs; | ||
} | ||
{ | ||
systems = builtins.attrNames inputs.holochain.devShells; | ||
perSystem = | ||
{ inputs' | ||
, config | ||
, pkgs | ||
, system | ||
, lib | ||
, ... | ||
}: { | ||
devShells.default = pkgs.mkShell { | ||
inputsFrom = [ inputs'.holochain.devShells.holonix ]; | ||
packages = [ | ||
pkgs.nodejs-18_x | ||
# more packages go here | ||
pkgs.cargo-nextest | ||
]; | ||
|
||
shellHook = '' | ||
unset CARGO_TARGET_DIR | ||
unset CARGO_HOME | ||
''; | ||
}; | ||
}; | ||
outputs = inputs@{ ... }: | ||
inputs.holochain.inputs.flake-parts.lib.mkFlake { inherit inputs; } { | ||
systems = builtins.attrNames inputs.holochain.devShells; | ||
perSystem = { inputs', config, pkgs, system, lib, ... }: { | ||
devShells.default = pkgs.mkShell { | ||
inputsFrom = [ inputs'.holochain.devShells.holonix ]; | ||
packages = [ | ||
pkgs.nodejs-18_x | ||
# more packages go here | ||
pkgs.cargo-nextest | ||
]; | ||
}; | ||
}; | ||
}; | ||
} |
Oops, something went wrong.