cargo init

This commit is contained in:
2026-04-04 03:30:49 +09:00
parent d0a26d4c5d
commit 490ed0ca7c
86 changed files with 16512 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
{
description = "A very basic flake";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs =
{
self,
nixpkgs,
flake-utils,
}:
flake-utils.lib.eachDefaultSystem (
system:
let
pkgs = nixpkgs.legacyPackages.${system};
in
{
packages.default = pkgs.callPackage ./package.nix { };
devShells.default = import ./devshell.nix { inherit pkgs; };
}
);
}