mirror of
https://github.com/Noratrieb/vps.git
synced 2026-01-14 08:45:02 +01:00
13 lines
345 B
Nix
13 lines
345 B
Nix
{ pkgs, lib, name, src ? null, ... }: pkgs.stdenv.mkDerivation {
|
|
inherit name src;
|
|
|
|
buildInputs = with pkgs; [ python311 python311Packages.zstandard python311Packages.brotli ];
|
|
|
|
buildPhase = ''
|
|
mkdir -p $out
|
|
cp -r $src/* $out/
|
|
chmod -R +w $out
|
|
${lib.getExe pkgs.python311} ${./prepare.py} $out
|
|
chmod -R -w $out
|
|
'';
|
|
}
|