12 lines
172 B
Nix
12 lines
172 B
Nix
with import <nixpkgs> { };
|
|
|
|
stdenv.mkDerivation {
|
|
name = "yeswiki-installer";
|
|
buildInputs = [
|
|
busybox
|
|
linuxquota
|
|
nginx
|
|
php83
|
|
];
|
|
shellHook = '''';
|
|
}
|