fix output is not a derivation

This commit is contained in:
Vinzenz Schroeter 2025-09-29 19:14:19 +02:00
parent 639657c397
commit 5e284cf146

View file

@ -102,7 +102,16 @@
'';
});
servicepoint-tanks-assets = ./tanks-backend/TanksServer/assets;
servicepoint-tanks-assets = pkgs.stdenvNoCC.mkDerivation {
pname = "servicepoint-tanks-assets";
version = "0.0.0";
src = ./tanks-backend/TanksServer/assets;
buildPhase = "";
installPhase = ''
cp -rv $src $out
'';
};
servicepoint-tanks = pkgs.buildDotnetModule {
pname = "servicepoint-tanks";