aboutsummaryrefslogtreecommitdiff
path: root/pkgs/private/default.nix
blob: 60fabad16c1ab17c6a3f1b9f9cce18afa235ce04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ pkgs }:
with pkgs;
let
  mylibs = import ../../libs.nix { inherit pkgs; };
in
rec {
  webapps = callPackage ./webapps {
    inherit mylibs;
    inherit (pkgs) composerEnv;
    inherit (pkgs.webapps) spip;
  };
}