Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
52 lines
1.1 KiB
Nix
52 lines
1.1 KiB
Nix
{
|
|
bash,
|
|
coreutils,
|
|
gnused,
|
|
goss,
|
|
lib,
|
|
resholve,
|
|
which,
|
|
}:
|
|
|
|
resholve.mkDerivation rec {
|
|
pname = "dgoss";
|
|
version = goss.version;
|
|
src = goss.src;
|
|
|
|
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
|
|
gnused
|
|
which
|
|
];
|
|
keep = {
|
|
"$CONTAINER_RUNTIME" = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
homepage = "https://github.com/goss-org/goss/blob/v${version}/extras/dgoss/README.md";
|
|
changelog = "https://github.com/goss-org/goss/releases/tag/v${version}";
|
|
description = "Convenience wrapper around goss that aims to bring the simplicity of goss to docker containers";
|
|
license = lib.licenses.asl20;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [
|
|
hyzual
|
|
anthonyroussel
|
|
];
|
|
mainProgram = "dgoss";
|
|
};
|
|
}
|