mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 14:06:52 +00:00
20 lines
255 B
Nix
20 lines
255 B
Nix
{
|
|
stdenv,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "s6-services";
|
|
|
|
phases = [
|
|
"installPhase"
|
|
"fixupPhase"
|
|
];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/etc
|
|
|
|
cp -r ${./configs} $out/etc/s6-confs
|
|
cp -r ${./services} $out/etc/s6-services
|
|
'';
|
|
}
|