* Sync with the trunk.

svn path=/nixpkgs/branches/x-updates/; revision=26054
This commit is contained in:
Eelco Dolstra
2011-02-22 10:00:18 +00:00
24 changed files with 257 additions and 413 deletions
+15
View File
@@ -0,0 +1,15 @@
{ stdenv, fetchurl, bison, flex }:
stdenv.mkDerivation rec {
name = "radvd-1.7";
src = fetchurl {
url = "http://www.litech.org/radvd/dist/${name}.tar.gz";
sha256 = "04rlz5fhparridjm32wcq9h1s3vxyiac7d3l6cvfgrlxixikgrzq";
};
buildInputs = [ bison flex ];
meta.homepage = http://www.litech.org/radvd/;
meta.description = "IPv6 Router Advertisement Daemon";
}