The source code and dockerfile for the GSW2024 AI Lab.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

20 lines
792 B

4 weeks ago
  1. This directory contains a nixpkgs overlay that defines the necessary build
  2. scripts to build storm and its dependencies.
  3. To use it, do one of the following:
  4. 1. Link ./default.nix to ~/.config/nixpkgs/overlays/<some-name>
  5. 2. Add its full path to the environment variable NIX_PATH, i.e.:
  6. NIX_PATH=${NIX_PATH}:nixpkgs-overlays=$PWD/default.nix
  7. See also https://nixos.org/nixpkgs/manual/#chap-overlays for further
  8. information.
  9. To build storm from the current branch call:
  10. nix-build '<nixpkgs>' -A stormChecker
  11. The attribute stormChecker builds storm with minimal options, stormCheckerFull
  12. activates all bells and whistles. See ./default.nix to change build options like
  13. LTO support, Z3 and others.
  14. See ./storm/default.nix on how to specify a specific Git commit to build storm
  15. from.