daemon w/ tests PoC
This commit is contained in:
parent
68fc04a6d2
commit
7f4a5a35ca
13 changed files with 498 additions and 81 deletions
16
shell.nix
16
shell.nix
|
|
@ -16,7 +16,21 @@
|
|||
fenixLib ? let
|
||||
src = fetchTarball "https://github.com/nix-community/fenix/archive/main.tar.gz";
|
||||
in import src { inherit pkgs; },
|
||||
fenixToolchain ? fenixLib.latest.toolchain,
|
||||
fenixBaseToolchain ? fenixLib.stable.withComponents [
|
||||
"cargo"
|
||||
"rustc"
|
||||
"llvm-tools"
|
||||
"rust-std"
|
||||
"rust-docs"
|
||||
"rust-src"
|
||||
"rustc-dev"
|
||||
"clippy"
|
||||
],
|
||||
fenixToolchain ? fenixLib.combine [
|
||||
fenixBaseToolchain
|
||||
# Rustfmt is very handy to have as nightly.
|
||||
fenixLib.latest.rustfmt
|
||||
],
|
||||
}: let
|
||||
inherit (pkgs) lib;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue