mirror of
https://github.com/ipetkov/crane.git
synced 2024-11-25 21:42:20 +03:00
db21a44eb0
[Trunk](https://trunkrs.dev) is a tool that allow you to build web apps using Rust and webassembly, including compiling scss, and distributing other assets. Adds `craneLib.buildTrunkPackage`, a function that builds a Trunk project returning a directory with the resulting dist files for that project --------- Co-authored-by: Ivan Petkov <ivanppetkov@gmail.com>
120 lines
3.8 KiB
Nix
120 lines
3.8 KiB
Nix
{
|
|
description = "Build a cargo project";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
|
|
crane = {
|
|
url = "github:ipetkov/crane";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
flake-utils.url = "github:numtide/flake-utils";
|
|
|
|
rust-overlay = {
|
|
url = "github:oxalica/rust-overlay";
|
|
inputs = {
|
|
nixpkgs.follows = "nixpkgs";
|
|
flake-utils.follows = "flake-utils";
|
|
};
|
|
};
|
|
};
|
|
|
|
outputs = { self, nixpkgs, crane, flake-utils, rust-overlay, ... }:
|
|
flake-utils.lib.eachDefaultSystem (system:
|
|
let
|
|
pkgs = import nixpkgs {
|
|
inherit system;
|
|
overlays = [ (import rust-overlay) ];
|
|
};
|
|
|
|
inherit (pkgs) lib;
|
|
|
|
rustToolchain = pkgs.rust-bin.stable.latest.default.override {
|
|
# Set the build targets supported by the toolchain,
|
|
# wasm32-unknown-unknown is required for trunk
|
|
targets = [ "wasm32-unknown-unknown" ];
|
|
};
|
|
craneLib = (crane.mkLib pkgs).overrideToolchain rustToolchain;
|
|
|
|
# When filtering sources, we want to allow assets other than .rs files
|
|
src = lib.cleanSourceWith {
|
|
src = ./.; # The original, unfiltered source
|
|
filter = path: type:
|
|
(lib.hasSuffix "\.html" path) ||
|
|
(lib.hasSuffix "\.scss" path) ||
|
|
# Example of a folder for images, icons, etc
|
|
(lib.hasInfix "/assets/" path) ||
|
|
# Default filter from crane (allow .rs files)
|
|
(craneLib.filterCargoSources path type)
|
|
;
|
|
};
|
|
|
|
# Common arguments can be set here to avoid repeating them later
|
|
commonArgs = {
|
|
inherit src;
|
|
# We must force the target, otherwise cargo will attempt to use your native target
|
|
cargoExtraArgs = "--target=wasm32-unknown-unknown";
|
|
};
|
|
|
|
# Build *just* the cargo dependencies, so we can reuse
|
|
# all of that work (e.g. via cachix) when running in CI
|
|
cargoArtifacts = craneLib.buildDepsOnly (commonArgs // {
|
|
# You cannot run cargo test on a wasm build
|
|
doCheck = false;
|
|
});
|
|
|
|
# Build the actual crate itself, reusing the dependency
|
|
# artifacts from above.
|
|
# This derivation is a directory you can put on a webserver.
|
|
my-app = craneLib.buildTrunkPackage (commonArgs // {
|
|
inherit cargoArtifacts;
|
|
});
|
|
|
|
# Quick example on how to serve the app,
|
|
# This is just an example, not useful for production environments
|
|
serve-app = pkgs.writeShellScriptBin "serve-app" ''
|
|
${pkgs.python3Minimal}/bin/python3 -m http.server --directory ${my-app} 8000
|
|
'';
|
|
in
|
|
{
|
|
checks = {
|
|
# Build the crate as part of `nix flake check` for convenience
|
|
inherit my-app;
|
|
|
|
# Run clippy (and deny all warnings) on the crate source,
|
|
# again, reusing the dependency artifacts from above.
|
|
#
|
|
# Note that this is done as a separate derivation so that
|
|
# we can block the CI if there are issues here, but not
|
|
# prevent downstream consumers from building our crate by itself.
|
|
my-app-clippy = craneLib.cargoClippy (commonArgs // {
|
|
inherit cargoArtifacts;
|
|
cargoClippyExtraArgs = "--all-targets -- --deny warnings";
|
|
});
|
|
|
|
# Check formatting
|
|
my-app-fmt = craneLib.cargoFmt {
|
|
inherit src;
|
|
};
|
|
};
|
|
|
|
packages.default = my-app;
|
|
|
|
apps.default = flake-utils.lib.mkApp {
|
|
drv = serve-app;
|
|
};
|
|
|
|
devShells.default = pkgs.mkShell {
|
|
inputsFrom = builtins.attrValues self.checks;
|
|
|
|
# Extra inputs can be added here
|
|
nativeBuildInputs = with pkgs; [
|
|
cargo
|
|
rustc
|
|
trunk
|
|
];
|
|
};
|
|
});
|
|
}
|