uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
43
pkgs/servers/monitoring/nagios/plugins/check_ssl_cert.nix
Normal file
43
pkgs/servers/monitoring/nagios/plugins/check_ssl_cert.nix
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, file
|
||||
, openssl
|
||||
, makeWrapper
|
||||
, which
|
||||
, curl
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "check_ssl_cert";
|
||||
version = "2.27.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "matteocorti";
|
||||
repo = "check_ssl_cert";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-R70disK654wKbrrs5QKy1reNDnjZgkXTlR/dAhikI6s=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
makeWrapper
|
||||
];
|
||||
|
||||
makeFlags = [
|
||||
"DESTDIR=$(out)/bin"
|
||||
"MANDIR=$(out)/share/man"
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
wrapProgram $out/bin/check_ssl_cert \
|
||||
--prefix PATH : "${lib.makeBinPath [ openssl file which curl ]}"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Nagios plugin to check the CA and validity of an X.509 certificate";
|
||||
homepage = "https://github.com/matteocorti/check_ssl_cert";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
37
pkgs/servers/monitoring/nagios/plugins/check_systemd.nix
Normal file
37
pkgs/servers/monitoring/nagios/plugins/check_systemd.nix
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
{ fetchFromGitHub, python3Packages, lib }:
|
||||
|
||||
python3Packages.buildPythonApplication rec {
|
||||
pname = "check_systemd";
|
||||
version = "2.3.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Josef-Friedrich";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "11sc0gycxzq1vfvin501jnwnky2ky6ns64yjiw8vq9vmkbf8nni6";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with python3Packages; [ nagiosplugin ];
|
||||
|
||||
postInstall = ''
|
||||
# check_systemd is only a broken stub calling check_systemd.py
|
||||
mv $out/bin/check_systemd{.py,}
|
||||
'';
|
||||
|
||||
# the test scripts run ./check_systemd.py and check_systemd. Patch to
|
||||
# the installed, patchShebanged executable in $out/bin
|
||||
preCheck = ''
|
||||
find test -name "*.py" -execdir sed -i "s@./check_systemd.py@$out/bin/check_systemd@" '{}' ";"
|
||||
export PATH=$PATH:$out/bin
|
||||
'';
|
||||
checkInputs = [ python3Packages.pytestCheckHook ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Nagios / Icinga monitoring plugin to check systemd for failed units";
|
||||
inherit (src.meta) homepage;
|
||||
changelog = "https://github.com/Josef-Friedrich/check_systemd/releases";
|
||||
maintainers = with maintainers; [ symphorien ];
|
||||
license = licenses.lgpl2Only;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue