18 lines
305 B
Nix
18 lines
305 B
Nix
|
{dream2nix, ...}: {
|
||
|
imports = [
|
||
|
dream2nix.modules.dream2nix.rust-cargo-lock
|
||
|
dream2nix.modules.dream2nix.rust-crane
|
||
|
];
|
||
|
|
||
|
deps = {fenix, ...}: {
|
||
|
deps.cargo = fenix.stable.minimalToolchain;
|
||
|
};
|
||
|
|
||
|
name = "tlaternet-webserver";
|
||
|
version = "0.1.0";
|
||
|
|
||
|
mkDerivation = {
|
||
|
src = ./.;
|
||
|
};
|
||
|
}
|