blob: 5e91b33febc06c2e0db3da2cc7942d4a42526431 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
{ stdenv, pkgs, fetchurl, python27Packages }:
let
rev = "556191f6d775f0505fb142c02f13a60ba7829ed9";
pmp-check-aws-rds = stdenv.mkDerivation rec {
name = "pmp-check-aws-rds";
src = fetchurl {
url = "https://raw.githubusercontent.com/percona/percona-monitoring-plugins/${rev}/nagios/bin/pmp-check-aws-rds.py";
sha256 = "0ghq6nl2529llxz1icf5hyg75k2hjzdkzfwgrs0d69r3f62w4q5y";
};
buildInputs = with python27Packages; [ python wrapPython ];
pythonPath = with python27Packages; [ boto ];
phases = [ "installPhase" "fixupPhase" ];
installPhase = ''
mkdir -p $out/bin
cp $src $out/bin/${name}
chmod +x $out/bin/${name}
wrapPythonPrograms
'';
};
in stdenv.mkDerivation {
name = "check_aws_rds";
outputs = [ "out" "conf" ];
unpackPhase = ":";
installPhase = ''
mkdir -p $out/bin
cp ${./check_aws_rds} $out/bin/check_aws_rds
cp ${./check_aws_rds.conf} $conf
substituteInPlace "$out/bin/"* \
--replace pmp-check-aws-rds '${pmp-check-aws-rds}/bin/pmp-check-aws-rds' \
--replace dig '${pkgs.bind}/bin/dig'
substituteInPlace "$conf" \
--replace check_aws_rds "$out/bin/check_aws_rds"
chmod +x "$out/bin/"*
'';
}
|