Skip to content
Snippets Groups Projects
Select Git revision
  • 35cbeae6f7d2947a05a8ecf913060069970f98a7
  • 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
    1188 commits behind the upstream repository.
    privatestorageio.nix 362 B
    { stdenv, lib, graphviz, python3Packages }:
    stdenv.mkDerivation rec {
      version = "0.0";
      name = "privatestorageio-${version}";
      src = lib.cleanSource ./.;
    
      depsBuildBuild = [
        graphviz
      ];
    
      buildPhase = ''
      ${python3Packages.sphinx}/bin/sphinx-build -W docs/source docs/build
      '';
    
      installPhase = ''
      mkdir $out
      mv docs/build $out/docs
      '';
    }