diff options
| author | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-09-10 09:02:24 +0000 |
|---|---|---|
| committer | Theofilos Augoustis <theofilos.augoustis@gmail.com> | 2025-09-10 09:02:24 +0000 |
| commit | aafb69e4d91b79fa5a8a3c31dd1004edb66af0bd (patch) | |
| tree | 10b879380e530691ab3a037068f17b5b7fc7ffa0 /flake.nix | |
| parent | bb9db4753db4b876c772024b6d79c789dc7a4885 (diff) | |
| download | focaccia-aafb69e4d91b79fa5a8a3c31dd1004edb66af0bd.tar.gz focaccia-aafb69e4d91b79fa5a8a3c31dd1004edb66af0bd.zip | |
Add descriptions to apps declared by flake
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix index 83bb5a1..8150a57 100644 --- a/flake.nix +++ b/flake.nix @@ -224,16 +224,25 @@ default = { type = "app"; program = "${packages.focaccia}/bin/focaccia"; + meta = { + description = "Translation validator for user-mode emulators"; + }; }; convert-log = { type = "app"; program = "${packages.focaccia}/bin/convert"; + meta = { + description = "Convert emulator debug logs to format accepted by Focaccia"; + }; }; capture-transforms = { type = "app"; program = "${packages.focaccia}/bin/capture-transforms"; + meta = { + description = "Capture symbolic equations describing program execution"; + }; }; validate-qemu = { @@ -244,6 +253,9 @@ exec ${packages.focaccia}/bin/validate-qemu --gdb "${gdbInternal}/bin/gdb" "$@" ''; in "${wrapper}/bin/validate-qemu"; + meta = { + description = "Validate QEMU translations using symbolic equations"; + }; }; # Useful for synchronize the uv lockfile @@ -253,6 +265,9 @@ set -euo pipefail exec ${pkgs.uv}/bin/uv sync ''}/bin/uv-sync"; + meta = { + description = "Sync uv python packages"; + }; }; }; |