* ifplugd: program for monitoring the link status of

ethernet interfaces.
* libdaemon: dependency of ifplugd.

svn path=/nixpkgs/trunk/; revision=9061
This commit is contained in:
Eelco Dolstra
2007-08-06 18:45:53 +00:00
parent 4f12e0c849
commit b2bff981f3
3 changed files with 42 additions and 6 deletions

View File

@@ -0,0 +1,10 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "libdaemon-0.12";
src = fetchurl {
url = http://0pointer.de/lennart/projects/libdaemon/libdaemon-0.12.tar.gz;
sha256 = "1l1nhgc3m67bhpyyvrr48wz06h40ck6abhbns08g66jdckwckrrr";
};
configureFlags = "--disable-lynx";
}