2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, perl }:
|
2011-03-24 14:30:06 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2021-08-01 21:48:53 +01:00
|
|
|
pname = "ndisc6";
|
|
|
|
version = "1.0.4";
|
2011-03-24 14:30:06 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-01 21:48:53 +01:00
|
|
|
url = "https://www.remlab.net/files/ndisc6/archive/ndisc6-${version}.tar.bz2";
|
2019-03-26 18:57:10 +00:00
|
|
|
sha256 = "07swyar1hl83zxmd7fqwb2q0c0slvrswkcfp3nz5lknrk15dmcdb";
|
2011-03-24 14:30:06 +00:00
|
|
|
};
|
|
|
|
|
2011-03-24 15:26:11 +00:00
|
|
|
buildInputs = [ perl ];
|
|
|
|
|
2015-04-05 04:42:37 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
2017-07-12 19:29:42 +01:00
|
|
|
"--disable-suid-install"
|
2015-04-05 04:42:37 +01:00
|
|
|
];
|
2011-03-24 16:03:43 +00:00
|
|
|
|
2015-04-05 04:42:37 +01:00
|
|
|
installFlags = [
|
|
|
|
"sysconfdir=\${out}/etc"
|
|
|
|
"localstatedir=$(TMPDIR)"
|
|
|
|
];
|
2011-03-24 16:03:43 +00:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.remlab.net/ndisc6/";
|
2011-03-24 14:30:06 +00:00
|
|
|
description = "A small collection of useful tools for IPv6 networking";
|
2019-01-26 10:01:09 +00:00
|
|
|
maintainers = with maintainers; [ eelco ];
|
2015-04-05 04:42:37 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
2011-03-24 14:30:06 +00:00
|
|
|
};
|
|
|
|
}
|