1
Fork 0
mirror of https://github.com/RGBCube/Site synced 2025-08-02 05:57:46 +00:00

Initialize Rust project

This commit is contained in:
RGBCube 2023-12-30 10:45:20 +03:00
parent 60327fac96
commit 6f5ea634b0
No known key found for this signature in database
7 changed files with 218 additions and 0 deletions

45
flake.nix Normal file
View file

@ -0,0 +1,45 @@
{
description = "The official website and link portal of RGBCube and his work.";
nixConfig = {
extra-substituters = "https://cache.garnix.io/";
extra-trusted-public-keys = "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=";
};
inputs = {
nixpkgs = {
url = "github:NixOS/nixpkgs/nixos-unstable";
};
flake-utils = {
url = "github:numtide/flake-utils";
};
cargo2nix = {
url = "github:cargo2nix/cargo2nix";
inputs.nixpkgs.follows = "nixpkgs";
inputs.flake-utils.follows = "flake-utils";
};
};
outputs = { nixpkgs, flake-utils, cargo2nix, ... } @ inputs: flake-utils.lib.eachDefaultSystem (system: let
pkgs = import nixpkgs {
inherit system;
overlays = [ cargo2nix.overlays.default ];
};
rustPackages = pkgs.rustBuilder.makePackageSet {
rustVersion = "1.76.0";
rustChannel = "nightly";
rustProfile = "minimal";
packageFun = import ./Cargo.nix;
};
in rec {
devShells.default = rustPackages.workspaceShell {
packages = [ cargo2nix.packages.${system}.default ];
};
packages.site = rustPackages.workspace.site {};
packages.default = packages.site;
});
}