2011-03-24 15:26:11 +00:00
|
|
|
{ stdenv, fetchurl, perl }:
|
2011-03-24 14:30:06 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-12-20 15:42:30 +00:00
|
|
|
name = "ndisc6-1.0.2";
|
2011-03-24 14:30:06 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://www.remlab.net/files/ndisc6/archive/${name}.tar.bz2";
|
2013-12-20 15:42:30 +00:00
|
|
|
sha256 = "0ynacanjhlib4japqmf7n2c0bv5f2qq6rx2nhk4kmylyrfhcikka";
|
2011-03-24 14:30:06 +00:00
|
|
|
};
|
|
|
|
|
2011-03-24 15:26:11 +00:00
|
|
|
buildInputs = [ perl ];
|
|
|
|
|
2011-03-24 16:03:43 +00:00
|
|
|
configureFlags = "--localstatedir=/var";
|
|
|
|
|
|
|
|
installFlags = "localstatedir=$(TMPDIR)";
|
|
|
|
|
2011-03-24 14:30:06 +00:00
|
|
|
meta = {
|
|
|
|
homepage = http://www.remlab.net/ndisc6/;
|
|
|
|
description = "A small collection of useful tools for IPv6 networking";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|