summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authorFabián Heredia Montiel <fabianhjr@protonmail.com>2021-10-29 09:09:58 -0500
committerFabián Heredia Montiel <fabianhjr@protonmail.com>2021-10-29 09:12:35 -0500
commitb96ab960d3a2ef371355f149327975799d41ed67 (patch)
tree1dede4f9978187df101762efff728a383ca22bd6 /pkgs/tools/networking
parent6238da5577e7b84734e73f11d34796cd15ce19ed (diff)
downloadnixpkgs-b96ab960d3a2ef371355f149327975799d41ed67.tar
nixpkgs-b96ab960d3a2ef371355f149327975799d41ed67.tar.gz
nixpkgs-b96ab960d3a2ef371355f149327975799d41ed67.tar.bz2
nixpkgs-b96ab960d3a2ef371355f149327975799d41ed67.tar.lz
nixpkgs-b96ab960d3a2ef371355f149327975799d41ed67.tar.xz
nixpkgs-b96ab960d3a2ef371355f149327975799d41ed67.tar.zst
nixpkgs-b96ab960d3a2ef371355f149327975799d41ed67.zip
vtun: remove
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/vtun/default.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/tools/networking/vtun/default.nix b/pkgs/tools/networking/vtun/default.nix
deleted file mode 100644
index 61c18af1656..00000000000
--- a/pkgs/tools/networking/vtun/default.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ lib, stdenv, fetchurl, fetchpatch, openssl, lzo, zlib, bison, flex }:
-
-stdenv.mkDerivation rec {
-  pname = "vtun";
-  version = "3.0.4";
-
-  src = fetchurl {
-    url = "mirror://sourceforge/vtun/vtun-${version}.tar.gz";
-    sha256 = "1fcqzn2bdjw31j1hvv6lg99v2phhszm29kp2xambxzp32mmxzy5b";
-  };
-
-  patches = [
-    (fetchpatch { url = "http://sources.debian.net/data/main/v/vtun/3.0.3-2.2/debian/patches/08-gcc5-inline.patch";
-                 sha256 = "18sys97v2hx6vac5zp3ld7sa6kz4izv3g9dnkm0lflbaxhym2vs1";
-                })
-  ];
-
-  postPatch = ''
-    sed -i -e 's/-m 755//' -e 's/-o root -g 0//' Makefile.in
-    sed -i '/strip/d' Makefile.in
-  '';
-  buildInputs = [ lzo openssl zlib bison flex ];
-
-  configureFlags = [
-    "--with-lzo-headers=${lzo}/include/lzo"
-    "--with-ssl-headers=${openssl.dev}/include/openssl"
-    "--with-blowfish-headers=${openssl.dev}/include/openssl"
-  ];
-
-  meta = with lib; {
-      description = "Virtual Tunnels over TCP/IP with traffic shaping, compression and encryption";
-      homepage = "http://vtun.sourceforge.net/";
-      license = licenses.gpl2;
-      platforms = platforms.linux;
-      maintainers = with maintainers; [ pSub ];
-  };
-}