nixpkgs/pkgs/tools/networking/gvpe/default.nix

35 lines
951 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, openssl, gmp, zlib, iproute, nettools }:
2015-06-15 13:10:46 +01:00
stdenv.mkDerivation rec {
pname = "gvpe";
2017-03-02 01:23:36 +00:00
version = "3.0";
2015-06-15 13:10:46 +01:00
src = fetchurl {
url = "https://ftp.gnu.org/gnu/gvpe/gvpe-${version}.tar.gz";
2017-03-02 01:23:36 +00:00
sha256 = "1v61mj25iyd91z0ir7cmradkkcm1ffbk52c96v293ibsvjs2s2hf";
2015-06-15 13:10:46 +01:00
};
patches = [ ./gvpe-3.0-glibc-2.26.patch ];
2015-06-15 13:10:46 +01:00
buildInputs = [ openssl gmp zlib ];
configureFlags = [
"--enable-tcp"
"--enable-http-proxy"
"--enable-dns"
];
2015-06-15 13:10:46 +01:00
preBuild = ''
sed -e 's@"/sbin/ifconfig.*"@"${iproute}/sbin/ip link set $IFNAME address $MAC mtu $MTU"@' -i src/device-linux.C
sed -e 's@/sbin/ifconfig@${nettools}/sbin/ifconfig@g' -i src/device-*.C
'';
meta = with lib; {
2015-06-15 13:10:46 +01:00
description = "A protected multinode virtual network";
homepage = "http://software.schmorp.de/pkg/gvpe.html";
2018-09-10 20:26:36 +01:00
maintainers = [ maintainers.raskin ];
platforms = with platforms; linux ++ freebsd;
license = licenses.gpl2;
};
}