Skip to content
Snippets Groups Projects
Select Git revision
  • bdfc6b9b6921f20b4acfe7d84f4cb29c546bc055
  • main default protected
  • restricted-sqlite-strategies
  • compare-structured-sql-dumps
  • 235.backup-and-recovery.recovery
  • mypy
  • real-spender
  • github/fork/tp-la/real-spender
  • 260.metric-rejected-zkaps
  • implicit-lease-renewal-problems
  • mach-nix
  • github/fork/tp-la/deep-traverse
  • v0.0
13 results

README.rst

Blame
  • default.nix 572 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 { };
    }