diff --git a/development/libs/atomptr/shell.nix b/development/libs/atomptr/shell.nix index 3a13912055f..e67364bbd94 100644 --- a/development/libs/atomptr/shell.nix +++ b/development/libs/atomptr/shell.nix @@ -3,6 +3,6 @@ with import {}; stdenv.mkDerivation { name = "atomicptr"; buildInputs = with pkgs; [ - rustracer rustup clangStdenv + rustc cargo rust-analyzer rustfmt ]; } diff --git a/development/tools/cargo-workspace2/Cargo.lock b/development/tools/cargo-workspace2/Cargo.lock index 3b59ec93405..f538b4834e2 100644 --- a/development/tools/cargo-workspace2/Cargo.lock +++ b/development/tools/cargo-workspace2/Cargo.lock @@ -20,7 +20,7 @@ checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de" [[package]] name = "cargo-workspace2" -version = "0.2.1" +version = "0.2.2" dependencies = [ "semver", "textwrap", diff --git a/games/rstnode/rst-client/src/ui/container.rs b/games/rstnode/rst-client/src/ui/container.rs new file mode 100644 index 00000000000..770a6feb705 --- /dev/null +++ b/games/rstnode/rst-client/src/ui/container.rs @@ -0,0 +1,6 @@ + + +/// A UI container +pub struct Container { + +} diff --git a/games/rstnode/rst-client/src/ui/mod.rs b/games/rstnode/rst-client/src/ui/mod.rs index 449f04efc1e..6d1c023692a 100644 --- a/games/rstnode/rst-client/src/ui/mod.rs +++ b/games/rstnode/rst-client/src/ui/mod.rs @@ -2,3 +2,6 @@ mod button; pub use button::*; + +mod container; +pub use container::*; diff --git a/infra/website/default.nix b/infra/website/default.nix index dd9bb7c1daa..c33e034a559 100644 --- a/infra/website/default.nix +++ b/infra/website/default.nix @@ -1,13 +1,18 @@ with import {}; +let + pelican = (pkgs.python3Packages.pelican.overrideAttrs ({ ... }: { + doInstallCheck = false; + })); +in stdenv.mkDerivation { name = "website"; src = ./.; buildInputs = with pkgs; [ python3 - ] ++ (with pkgs.python3Packages; [ pelican + ] ++ (with pkgs.python3Packages; [ markdown webassets ]);