cloudlog: add passthru update script

This commit is contained in:
Matt Melling
2023-02-20 17:23:15 +00:00
parent a1291d0d02
commit eaf5448944
+6 -2
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; {