From 86c56bb9a40425e4567c3648d427ad7e6be01a65 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Fri, 5 Feb 2021 13:31:42 +0100 Subject: Functional module, extracted from fediventure repo (just to make it easier to hack, and remove fediventure-specific deployment logic) --- workadventure-nix.nix | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 workadventure-nix.nix (limited to 'workadventure-nix.nix') diff --git a/workadventure-nix.nix b/workadventure-nix.nix new file mode 100644 index 0000000..4c515cb --- /dev/null +++ b/workadventure-nix.nix @@ -0,0 +1,33 @@ +# WorkAdventure packaging effort by SuperSandro2000, not yet upstreamed into nixpkgs. + +{ lib, ... }: + + +let + pkgs = import {}; + + src = pkgs.fetchgit { + url = "https://gitlab.infra4future.de/stuebinm/workadventure-nix"; + rev = "71ed23142c5ab6db05263b6e5c52f8fab1d84425"; + sha256 = "0g20rzaxp5md26hc3dig4hhp296bd45n1zi3b67a8q0l290ydn2g"; + }; + + # Use a fixed-point operator to build a nixpkgs-like structure that contains all + # workadventure derivation. + wapkgs = lib.fix (self: let + callPackage = lib.callPackageWith (pkgs // self); + in { + workadventure-pusher = callPackage "${src}/pusher" {}; + workadventure-back = callPackage "${src}/back" {}; + workadventure-front = callPackage "${src}/front" {}; + workadventure-messages = callPackage "${src}/messages" {}; + workadventure-maps = callPackage "${src}/maps" {}; + }); + +# Build public attrset of all accessible components. +in rec { + pusher = wapkgs.workadventure-pusher; + back = wapkgs.workadventure-back; + front = wapkgs.workadventure-front; + maps = wapkgs.workadventure-maps; +} -- cgit v1.2.3