Merge pull request #124077 from Hyzual/add-dgoss
This commit is contained in:
commit
78881e7095
2 changed files with 50 additions and 0 deletions
48
pkgs/tools/misc/dgoss/default.nix
Normal file
48
pkgs/tools/misc/dgoss/default.nix
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, resholvePackage
|
||||||
|
, substituteAll
|
||||||
|
, bash
|
||||||
|
, coreutils
|
||||||
|
, goss
|
||||||
|
, which
|
||||||
|
}:
|
||||||
|
|
||||||
|
resholvePackage rec {
|
||||||
|
pname = "dgoss";
|
||||||
|
version = "0.3.16";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "aelsabbahy";
|
||||||
|
repo = "goss";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1m5w5vwmc9knvaihk61848rlq7qgdyylzpcwi64z84rkw8qdnj6p";
|
||||||
|
};
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
fake = {
|
||||||
|
external = [ "docker" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -2395,6 +2395,8 @@ in
|
||||||
|
|
||||||
ioport = callPackage ../os-specific/linux/ioport {};
|
ioport = callPackage ../os-specific/linux/ioport {};
|
||||||
|
|
||||||
|
dgoss = callPackage ../tools/misc/dgoss { };
|
||||||
|
|
||||||
diagrams-builder = callPackage ../tools/graphics/diagrams-builder {
|
diagrams-builder = callPackage ../tools/graphics/diagrams-builder {
|
||||||
inherit (haskellPackages) ghcWithPackages diagrams-builder;
|
inherit (haskellPackages) ghcWithPackages diagrams-builder;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue