cloudlog: add passthru update script

This commit is contained in:
Matt Melling 2023-01-30 14:13:56 +00:00
parent a1291d0d02
commit eaf5448944
No known key found for this signature in database
GPG key ID: 6D94F6DB60A64FFE

View file

@ -1,6 +1,7 @@
{ lib
, stdenvNoCC
, fetchFromGitHub
, nix-update-script
, nixosTests
, php}:
@ -25,8 +26,11 @@ stdenvNoCC.mkDerivation rec {
cp -R ./* $out
'';
passthru.tests = {
inherit (nixosTests) cloudlog;
passthru = {
tests = {
inherit (nixosTests) cloudlog;
};
updateScript = nix-update-script { };
};
meta = with lib; {