nixpkgs/shells/werkraum-media/soziopolis-flake.nix
Daniel Siepmann df46cb05ed
Cleanup nix flakes + shells
Remove flakes for now.
I will use shells for now to not have a mixed setup.
Add composer v1 for a single customer project as overlay due to usage in
shell instead of flakes.

Adjust folder to not have unnecessary deep structure.

Add shell for reuter monorepo using composer v1.
2022-04-14 15:46:49 +02:00

36 lines
858 B
Nix

{
description = "First example for soziopolis";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-21.11";
flake-utils.url = "github:numtide/flake-utils";
typo3.url = "/home/daniels/.config/nixpkgs/flakes/projects/web/typo3";
};
outputs = {
self,
nixpkgs,
flake-utils,
typo3
}:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
packageJsonPath = "packages/soziopolis/Build/";
in rec {
apps = rec {
compileAssets = typo3.lib.compileAssets {
inherit pkgs packageJsonPath;
nodePkg = pkgs.nodejs-14_x;
};
watchAssets = typo3.lib.watchAssets {
inherit pkgs compileAssets packageJsonPath;
nodePkg = pkgs.nodejs-14_x;
};
};
defaultApp = apps.compileAssets;
}
);
}