forked from mirrors/nixpkgs
Merge pull request #172373 from MatthewCroughan/mc/tinystatus
tinystatus: init at unstable-2021-07-09
This commit is contained in:
commit
faa501304d
58
pkgs/tools/networking/tinystatus/default.nix
Normal file
58
pkgs/tools/networking/tinystatus/default.nix
Normal file
|
@ -0,0 +1,58 @@
|
||||||
|
{ lib, stdenvNoCC, makeWrapper, netcat, curl, unixtools, coreutils, mktemp
|
||||||
|
, findutils, gnugrep, fetchFromGitHub, gawk, gnused }:
|
||||||
|
|
||||||
|
stdenvNoCC.mkDerivation rec {
|
||||||
|
pname = "tinystatus";
|
||||||
|
version = "unstable-2021-07-09";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "bderenzo";
|
||||||
|
repo = "tinystatus";
|
||||||
|
rev = "fc128adf240261ac99ea3e3be8d65a92eda52a73";
|
||||||
|
sha256 = "sha256-FvQwibm6F10l9/U3RnNTGu+C2JjHOwbv62VxXAfI7/s=";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
|
runtimeInputs = [
|
||||||
|
curl
|
||||||
|
netcat
|
||||||
|
unixtools.ping
|
||||||
|
coreutils
|
||||||
|
mktemp
|
||||||
|
findutils
|
||||||
|
gnugrep
|
||||||
|
gawk
|
||||||
|
gnused
|
||||||
|
];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
install -Dm555 tinystatus $out/bin/tinystatus
|
||||||
|
wrapProgram $out/bin/tinystatus \
|
||||||
|
--set PATH "${lib.makeBinPath runtimeInputs}"
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
doInstallCheck = true;
|
||||||
|
|
||||||
|
installCheckPhase = ''
|
||||||
|
runHook preCheck
|
||||||
|
|
||||||
|
cat <<EOF >test.csv
|
||||||
|
ping, 0, testing, this.should.fail.example.com
|
||||||
|
EOF
|
||||||
|
|
||||||
|
$out/bin/tinystatus test.csv | grep Disrupted
|
||||||
|
|
||||||
|
runHook postCheck
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A static HTML status page generator written in pure shell";
|
||||||
|
homepage = "https://github.com/bderenzo/tinystatus";
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = platforms.unix;
|
||||||
|
maintainers = with maintainers; [ matthewcroughan ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -9025,6 +9025,8 @@ with pkgs;
|
||||||
|
|
||||||
tinyssh = callPackage ../tools/networking/tinyssh { };
|
tinyssh = callPackage ../tools/networking/tinyssh { };
|
||||||
|
|
||||||
|
tinystatus = callPackage ../tools/networking/tinystatus { };
|
||||||
|
|
||||||
opensshPackages = dontRecurseIntoAttrs (callPackage ../tools/networking/openssh {});
|
opensshPackages = dontRecurseIntoAttrs (callPackage ../tools/networking/openssh {});
|
||||||
|
|
||||||
openssh = opensshPackages.openssh.override {
|
openssh = opensshPackages.openssh.override {
|
||||||
|
|
Loading…
Reference in a new issue