aboutsummaryrefslogblamecommitdiff
path: root/cluster/prod/app/cryptpad/build/deuxfleurs.nix
blob: 00485905a408b84779392db7859bcb91b1f64300 (plain) (tree)
1
2
3
4
5
6
7
8
9


                              
                           


                                               

                                

                     
                          

    
{ name ? "deuxfleurs/cryptpad"
, tag ? "nix-latest"
}: let
  sources = import ./npins;
  pkgs = import sources.nixpkgs {};
in rec {
  cryptpad = pkgs.callPackage ./default.nix {};
  docker = import ./docker.nix {
    inherit pkgs;
    inherit name tag;
    inherit cryptpad;
    withOnlyOffice = true;
  };
}