mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 19:45:54 +00:00
b3dfc01024
It needs cleaning up (I think^Wknow there are some impurities in all the scripts and the config) and it is non-functional until the nagios-plugins package has been added. svn path=/nixpkgs/trunk/; revision=7506
15 lines
310 B
Nix
15 lines
310 B
Nix
{ stdenv, fetchurl, perl }:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "nagios-2.6";
|
|
|
|
src = fetchurl {
|
|
url = http://heanet.dl.sourceforge.net/sourceforge/nagios/nagios-2.6.tar.gz;
|
|
md5 = "a032edba07bf389b803ce817e9406c02";
|
|
};
|
|
|
|
patches = [./nagios.patch];
|
|
buildInputs = [perl];
|
|
buildPhase = "make all";
|
|
}
|