Skip to content
Snippets Groups Projects
Select Git revision
  • e17b5aa889aaec45ac2bc002f8fa4261e995658e
  • develop default protected
  • dont-use-etc-hosts
  • sec
  • simplify-grafana
  • simple-docs-build
  • local-test-grid
  • no-morph-on-nodes
  • stuff
  • arion
10 results

privatestorageio.nix

Blame
  • Forked from PrivateStorage / PrivateStorageio
    Source project has a limited visibility.
    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 { };
    }