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`.
This commit is contained in:
Hyzual 2022-05-25 17:21:58 +02:00
parent e698f9713a
commit da43dc7d1f

View file

@ -10,13 +10,13 @@
resholve.mkDerivation rec { resholve.mkDerivation rec {
pname = "dgoss"; pname = "dgoss";
version = "0.3.16"; version = "0.3.18";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "aelsabbahy"; owner = "aelsabbahy";
repo = "goss"; repo = "goss";
rev = "v${version}"; rev = "v${version}";
sha256 = "1m5w5vwmc9knvaihk61848rlq7qgdyylzpcwi64z84rkw8qdnj6p"; sha256 = "01ssc7rnnwpyhjv96qy8drsskghbfpyxpsahk8s62lh8pxygynhv";
}; };
dontConfigure = true; dontConfigure = true;
@ -32,8 +32,8 @@ resholve.mkDerivation rec {
scripts = [ "bin/dgoss" ]; scripts = [ "bin/dgoss" ];
interpreter = "${bash}/bin/bash"; interpreter = "${bash}/bin/bash";
inputs = [ coreutils which ]; inputs = [ coreutils which ];
fake = { keep = {
external = [ "docker" ]; "$CONTAINER_RUNTIME" = true;
}; };
}; };
}; };