Cleaning up build files

wip/yesman
Katharina Fey 3 years ago
parent bb5f28a3db
commit d34f9be764
Signed by: kookie
GPG Key ID: 90734A9E619C8A6C
  1. 2
      development/libs/atomptr/shell.nix
  2. 2
      development/tools/cargo-workspace2/Cargo.lock
  3. 6
      games/rstnode/rst-client/src/ui/container.rs
  4. 3
      games/rstnode/rst-client/src/ui/mod.rs
  5. 7
      infra/website/default.nix

@ -3,6 +3,6 @@ with import <nixpkgs> {};
stdenv.mkDerivation {
name = "atomicptr";
buildInputs = with pkgs; [
rustracer rustup clangStdenv
rustc cargo rust-analyzer rustfmt
];
}

@ -20,7 +20,7 @@ checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
[[package]]
name = "cargo-workspace2"
version = "0.2.1"
version = "0.2.2"
dependencies = [
"semver",
"textwrap",

@ -0,0 +1,6 @@
/// A UI container
pub struct Container {
}

@ -2,3 +2,6 @@
mod button;
pub use button::*;
mod container;
pub use container::*;

@ -1,13 +1,18 @@
with import <nixpkgs> {};
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
]);

Loading…
Cancel
Save