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`.

Hyzual da43dc7d e698f971

+4 -4
+4 -4
pkgs/tools/misc/dgoss/default.nix
··· 10 10 11 11 resholve.mkDerivation rec { 12 12 pname = "dgoss"; 13 - version = "0.3.16"; 13 + version = "0.3.18"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "aelsabbahy"; 17 17 repo = "goss"; 18 18 rev = "v${version}"; 19 - sha256 = "1m5w5vwmc9knvaihk61848rlq7qgdyylzpcwi64z84rkw8qdnj6p"; 19 + sha256 = "01ssc7rnnwpyhjv96qy8drsskghbfpyxpsahk8s62lh8pxygynhv"; 20 20 }; 21 21 22 22 dontConfigure = true; ··· 32 32 scripts = [ "bin/dgoss" ]; 33 33 interpreter = "${bash}/bin/bash"; 34 34 inputs = [ coreutils which ]; 35 - fake = { 36 - external = [ "docker" ]; 35 + keep = { 36 + "$CONTAINER_RUNTIME" = true; 37 37 }; 38 38 }; 39 39 };