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