From da43dc7d1ffd567cfeb9bcffe792b01c1ae55da3 Mon Sep 17 00:00:00 2001 From: Hyzual Date: Wed, 25 May 2022 17:21:58 +0200 Subject: [PATCH] dgoss: 0.3.16 -> 0.3.18 Release notes: https://github.com/aelsabbahy/goss/releases/tag/v0.3.18 Container backend is now configurable via the environment variable `$CONTAINER_RUNTIME`, which enables support of `podman` instead of `docker`. --- pkgs/tools/misc/dgoss/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/tools/misc/dgoss/default.nix b/pkgs/tools/misc/dgoss/default.nix index e050ff0f26b..d33b17cfe55 100644 --- a/pkgs/tools/misc/dgoss/default.nix +++ b/pkgs/tools/misc/dgoss/default.nix @@ -10,13 +10,13 @@ resholve.mkDerivation rec { pname = "dgoss"; - version = "0.3.16"; + version = "0.3.18"; src = fetchFromGitHub { owner = "aelsabbahy"; repo = "goss"; rev = "v${version}"; - sha256 = "1m5w5vwmc9knvaihk61848rlq7qgdyylzpcwi64z84rkw8qdnj6p"; + sha256 = "01ssc7rnnwpyhjv96qy8drsskghbfpyxpsahk8s62lh8pxygynhv"; }; dontConfigure = true; @@ -32,8 +32,8 @@ resholve.mkDerivation rec { scripts = [ "bin/dgoss" ]; interpreter = "${bash}/bin/bash"; inputs = [ coreutils which ]; - fake = { - external = [ "docker" ]; + keep = { + "$CONTAINER_RUNTIME" = true; }; }; };