20 lines
503 B
Nix
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}";
|
|
};
|
|
|
|
};
|
|
}
|