argus-wasm/flake.nix
2025-11-03 13:34:13 +01:00

20 lines
503 B
Nix

{
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}";
};
};
}