clan ui: setup typed api method

This commit is contained in:
Johannes Kirschbauer
2024-05-20 19:34:27 +02:00
parent c3be19f3cd
commit 8d77525664
16 changed files with 375 additions and 96 deletions

View File

@@ -57,6 +57,16 @@
cp -r out/* $out
'';
};
clan-ts-api = pkgs.stdenv.mkDerivation {
name = "clan-ts-api";
src = ./.;
buildInputs = [ pkgs.python3 ];
installPhase = ''
python api.py > $out
'';
};
default = self'.packages.clan-cli;
};