blob: 99ae843e25f78299744d8fbe08acd507fb22010c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ python2Packages, fetchFromGitHub }:
python2Packages.buildPythonApplication rec {
version = "edc51ea-master";
pname = "nagios-cli";
src = fetchFromGitHub {
owner = "tehmaze";
repo = "nagios-cli";
rev = "edc51eaccf1086bb4469ce45c5e5155f2d71a2f9";
sha256 = "1qw5fv4niz079zqwmfr3kzjv8cc31rbhi9whdbv9c32qdi3h7vsp";
fetchSubmodules = true;
};
}
|