This commit is contained in:
2025-08-27 02:13:43 -04:00
commit 333cb4a69d
31 changed files with 4934 additions and 0 deletions

31
flake.nix Normal file
View File

@@ -0,0 +1,31 @@
{
description = "a flake indeed";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs, flake-utils, ... } @ inputs:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = nixpkgs.legacyPackages.${system};
in {
packages.default = pkgs.stdenv.mkDerivation {
pname = "nested ratchet fm";
src = ./.;
};
devShells.default = pkgs.mkShellNoCC rec {
buildInputs = with pkgs; [
proverif
verifpal
];
shellHook = ''
echo "Switching to the nested ratchet formal methods dev environment ... :D"
'';
};
}
);
}