initial commit

This commit is contained in:
Joeri Exelmans 2025-09-23 11:53:22 +02:00
commit 5f0f9999fc
13 changed files with 1854 additions and 0 deletions

26
flake.nix Normal file
View file

@ -0,0 +1,26 @@
{
inputs =
{
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs, ... }@inputs:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.${system}.default = pkgs.mkShell
{
packages = with pkgs; [
rustc
cargo
];
buildInputs = with pkgs; [
openssl
];
nativeBuildInputs = [ pkgs.pkg-config ];
# env.RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rust}";
};
};
}