Skip to content
Snippets Groups Projects
Select Git revision
  • 03e30c7690d5b1f08b78a68b1ea492d1517feae7
  • main default protected
  • 0.3.0.0
  • 0.2.1.0
  • 0.2.0.0
5 results

README.md

Blame
  • default.nix 781 B
    { pkgs ? import ./nixpkgs.nix { } }:
    {
      # Render the project documentation source to some presentation format (ie,
      # html) with Sphinx.
      docs = pkgs.callPackage ./docs.nix { };
    
      # Run some system integration tests in VMs covering some of the software
      # we're integrating (ie, application functionality).
      system-tests = pkgs.callPackage ./nixos/system-tests.nix { };
    
      # Run some unit tests of the Nix that ties all of these things together (ie,
      # PrivateStorageio-internal library functionality).
      unit-tests = pkgs.callPackage ./nixos/unit-tests.nix { };
    
      # Build all grids into a single derivation. The derivation also has several
      # attributes that are useful for exploring the configuration in a repl or
      # with eval.
      morph = pkgs.callPackage ./morph {};
    }