da43dc7d1f
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`.
49 lines
1.1 KiB
Nix
49 lines
1.1 KiB
Nix
{ lib
|
|
, fetchFromGitHub
|
|
, resholve
|
|
, substituteAll
|
|
, bash
|
|
, coreutils
|
|
, goss
|
|
, which
|
|
}:
|
|
|
|
resholve.mkDerivation rec {
|
|
pname = "dgoss";
|
|
version = "0.3.18";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aelsabbahy";
|
|
repo = "goss";
|
|
rev = "v${version}";
|
|
sha256 = "01ssc7rnnwpyhjv96qy8drsskghbfpyxpsahk8s62lh8pxygynhv";
|
|
};
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
sed -i '2i GOSS_PATH=${goss}/bin/goss' extras/dgoss/dgoss
|
|
install -D extras/dgoss/dgoss $out/bin/dgoss
|
|
'';
|
|
|
|
solutions = {
|
|
default = {
|
|
scripts = [ "bin/dgoss" ];
|
|
interpreter = "${bash}/bin/bash";
|
|
inputs = [ coreutils which ];
|
|
keep = {
|
|
"$CONTAINER_RUNTIME" = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/aelsabbahy/goss/blob/v${version}/extras/dgoss/README.md";
|
|
description = "Convenience wrapper around goss that aims to bring the simplicity of goss to docker containers";
|
|
license = licenses.asl20;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ hyzual ];
|
|
};
|
|
}
|