initial commit

This commit is contained in:
Joeri Exelmans 2025-11-03 13:34:13 +01:00
commit 859594f779
6 changed files with 583 additions and 0 deletions

20
flake.nix Normal file
View file

@ -0,0 +1,20 @@
{
description = "argus temporal logic monitoring tool";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = { self, nixpkgs }: let
pkgs = nixpkgs.legacyPackages."x86_64-linux";
in {
devShells."x86_64-linux".default = pkgs.mkShell {
buildInputs = with pkgs; [
cargo rustc rustfmt clippy rust-analyzer wasm-pack lld
python3
];
env.RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
};
};
}