nixpkgs/home/packages/custom/default.nix
Daniel Siepmann d9f5bb36ab
Provide a command to serve a TYPO3 testing instance
This is useful in order to remember the actual command.
The necessary environment arguments need to be set.

This can be executed from within a functional-* folder.
2024-04-03 09:31:17 +02:00

20 lines
497 B
Nix

{
callPackage
, ownLib
}:
[
(callPackage ./dmenu-scripts { })
(callPackage ./update-system { })
(callPackage ./nextcloud-sync/from-local.nix { })
(callPackage ./nextcloud-sync/from-remote.nix { })
(callPackage ./typo3-documentation-rendering { })
(callPackage ./typo3-documentation-rendering-old { })
(callPackage ./typo3-serve-testing-instance { })
(callPackage ./typo3-push-core { })
(callPackage ./zcat-progress { })
(callPackage ./project {
inherit ownLib;
})
]