mirror of
https://github.com/moeru-ai/airi.git
synced 2026-05-19 08:10:45 +00:00
82 lines
2 KiB
Nix
82 lines
2 KiB
Nix
{
|
|
lib,
|
|
stdenvNoCC,
|
|
|
|
pnpm,
|
|
|
|
cacert,
|
|
gitMinimal,
|
|
nodejs,
|
|
}:
|
|
|
|
stdenvNoCC.mkDerivation (final: {
|
|
pname = "airi";
|
|
version = (builtins.fromJSON (builtins.readFile ../package.json)).version;
|
|
|
|
src = ../.;
|
|
|
|
pnpmDeps = pnpm.fetchDeps {
|
|
inherit (final) pname version src;
|
|
fetcherVersion = 2;
|
|
hash = builtins.readFile ./pnpm-deps-hash.txt;
|
|
};
|
|
|
|
# Cache of assets downloaded during vite build
|
|
assets = stdenvNoCC.mkDerivation {
|
|
pname = "airi-assets";
|
|
inherit (final) version src pnpmDeps;
|
|
|
|
nativeBuildInputs = [
|
|
cacert # For network request
|
|
gitMinimal # For unplugin-info
|
|
nodejs
|
|
pnpm.configHook
|
|
];
|
|
|
|
buildPhase = ''
|
|
runHook preBuild
|
|
|
|
pnpm run build:packages
|
|
pnpm -F @proj-airi/stage-web run build
|
|
|
|
runHook postBuild
|
|
'';
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p "$out"
|
|
cp -r .cache/* "$out"
|
|
cp -r apps/stage-web/.cache/assets/* "$out"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
outputHashMode = "recursive";
|
|
outputHashAlgo = "sha256";
|
|
outputHash = builtins.readFile ./assets-hash.txt;
|
|
};
|
|
|
|
meta = {
|
|
description = "Self-hostable AI waifu / companion / VTuber";
|
|
longDescription = ''
|
|
AIRI is a soul container of AI waifu / virtual characters to bring them into our world,
|
|
wishing to achieve Neuro-sama's altitude. It's completely LLM and AI driven, capable of
|
|
realtime voice chat, playing Minecraft and Factorio. It can be run in browser or on desktop.
|
|
This is the desktop version.
|
|
'';
|
|
homepage = "https://github.com/moeru-ai/airi";
|
|
changelog = "https://github.com/moeru-ai/airi/releases/tag/v${final.version}";
|
|
# While airi itself is licensed under MIT, it uses the nonfree Cubism SDK. Whether it's
|
|
# redistributable remains a question, so we say it's not.
|
|
license = lib.licenses.unfree;
|
|
platforms = [
|
|
"x86_64-linux"
|
|
"aarch64-linux"
|
|
"x86_64-darwin"
|
|
"aarch64-darwin"
|
|
];
|
|
mainProgram = final.pname;
|
|
maintainers = with lib.maintainers; [ weathercold ];
|
|
};
|
|
})
|