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

README.rst

Blame
  • Forked from PrivateStorage / PrivateStorageio
    Source project has a limited visibility.
    privatestorageio.nix 341 B
    { stdenv, graphviz, python3Packages }:
    stdenv.mkDerivation rec {
      version = "0.0";
      name = "privatestorageio-${version}";
      src = ./.;
    
      depsBuildBuild = [
        graphviz
      ];
    
      buildPhase = ''
      ${python3Packages.sphinx}/bin/sphinx-build -W docs/source docs/build
      '';
    
      installPhase = ''
      mkdir $out
      mv docs/build $out/docs
      '';
    }