Initial commit; wrote lots o' serializers

This commit is contained in:
2023-05-07 00:43:16 +02:00
commit 3080b1ecd4
12 changed files with 2224 additions and 0 deletions

21
flake.nix Normal file
View File

@@ -0,0 +1,21 @@
{
description = "A very basic flake";
inputs.nixpkgs.url = "nixpkgs";
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in {
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
clang
rustup
];
nativeBuildInputs = with pkgs; [
];
};
});
}