29 lines
504 B
Nix
29 lines
504 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
deps,
|
|
}:
|
|
pkgs.stdenv.mkDerivation rec {
|
|
pname = "tasiaiso.vulpecula.zone";
|
|
version = "1.1.6";
|
|
|
|
src = pkgs.fetchFromGitea {
|
|
domain = "git.vulpecula.zone";
|
|
owner = "tasiaiso";
|
|
repo = "tasiaiso.vulpecula.zone";
|
|
rev = "3bb3052aa9bdd8d7d5f63eb13200ba450de7e01b";
|
|
hash = "sha256-K/K5l5vI7hOCjTC+L/PpGCdWY9ew8vYa8XUARzKUaGw=";
|
|
};
|
|
|
|
nativeBuildInputs = deps;
|
|
|
|
buildPhase = ''
|
|
make
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/
|
|
cp -r site/. $out/
|
|
'';
|
|
}
|