From ac5507c9cb0061bb0ede20dd7794eb2a75b82c5e Mon Sep 17 00:00:00 2001 From: r-vdp Date: Tue, 20 Aug 2024 19:00:00 +0200 Subject: [PATCH] mycelium: add update script --- pkgs/by-name/my/mycelium/package.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/my/mycelium/package.nix b/pkgs/by-name/my/mycelium/package.nix index 04a1714826bf..2a89fda57607 100644 --- a/pkgs/by-name/my/mycelium/package.nix +++ b/pkgs/by-name/my/mycelium/package.nix @@ -5,6 +5,7 @@ , openssl , darwin , nixosTests +, nix-update-script }: rustPlatform.buildRustPackage rec { @@ -38,7 +39,10 @@ rustPlatform.buildRustPackage rec { OPENSSL_DIR = "${lib.getDev openssl}"; }; - passthru.tests = { inherit (nixosTests) mycelium; }; + passthru = { + updateScript = nix-update-script { }; + tests = { inherit (nixosTests) mycelium; }; + }; meta = with lib; { description = "End-2-end encrypted IPv6 overlay network";