23 lines
399 B
Nix
23 lines
399 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
openclawGateway,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "openclaw-package-contents";
|
|
version = lib.getVersion openclawGateway;
|
|
|
|
dontUnpack = true;
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
env = {
|
|
OPENCLAW_GATEWAY = openclawGateway;
|
|
};
|
|
|
|
doCheck = true;
|
|
checkPhase = "${../scripts/check-package-contents.sh}";
|
|
installPhase = "${../scripts/empty-install.sh}";
|
|
}
|