aboutsummaryrefslogtreecommitdiff
path: root/test.nix
blob: 3df16d6beb2d94110201fa070d2f970d6babf2c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# NOTE: this file is only meant to be used for quickly building a
# version of workadventure, not for actual use. Use callPackages on
# the subdirectories directly for use e.g. in modules.

with import <nixpkgs> {};

lib.fix (self: let
  callPackage = lib.callPackageWith self;
in pkgs // {
  workadventure-back = callPackage ./back {};
  workadventure-pusher = callPackage ./pusher {};
  workadventure-messages = callPackage ./messages {};
  workadventure-front = callPackage ./front {};
  workadventure-uploader = callPackage ./uploader {};
  workadventure-maps = callPackage ./maps {};
})