about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2024-09-26 22:37:09 +0200
committerGitHub <noreply@github.com>2024-09-26 22:37:09 +0200
commitb248725d853b23d2db8cae9fe1d39629d67188fc (patch)
tree89d068655d7086eb962310a3c4f3ab6eff2c715d /pkgs/tools
parent0627caf4909c163798a817bf90d6af01e2fcdaeb (diff)
parentf29ed88f30c7310913ca58294681044b56844bcd (diff)
ubridge: 0.9.18 -> 0.9.19 (#343775)
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/ubridge/default.nix58
1 files changed, 0 insertions, 58 deletions
diff --git a/pkgs/tools/networking/ubridge/default.nix b/pkgs/tools/networking/ubridge/default.nix
deleted file mode 100644
index 085ee4f76d0a9..0000000000000
--- a/pkgs/tools/networking/ubridge/default.nix
+++ /dev/null
@@ -1,58 +0,0 @@
-{ lib
-, stdenv
-, fetchFromGitHub
-, libpcap
-, testers
-, ubridge
-}:
-
-stdenv.mkDerivation rec {
-  pname = "ubridge";
-  version = "0.9.18";
-
-  src = fetchFromGitHub {
-    owner = "GNS3";
-    repo = "ubridge";
-    rev = "v${version}";
-    sha256 = "0jg66jhhpv4c9340fsdp64hf9h253i8r81fknxa0gq241ripp3jn";
-  };
-
-  postPatch = ''
-    substituteInPlace Makefile \
-      --replace "/usr/local/bin" "$out/bin" \
-      --replace "setcap" "#setcap"
-  '';
-
-  buildInputs = [ libpcap ];
-
-  installPhase = ''
-    runHook preInstall
-
-    mkdir -p $out/bin
-    install -Dm755 ubridge $out/bin/ubridge
-
-    runHook postInstall
-  '';
-
-  passthru = {
-    tests.version = testers.testVersion {
-      package = ubridge;
-      command = "ubridge -v";
-    };
-  };
-
-  meta = with lib; {
-    description = "Bridge for UDP tunnels, Ethernet, TAP, and VMnet interfaces";
-    longDescription = ''
-      uBridge is a simple application to create user-land bridges between
-      various technologies. Currently bridging between UDP tunnels, Ethernet
-      and TAP interfaces is supported. Packet capture is also supported.
-    '';
-    inherit (src.meta) homepage;
-    changelog = "https://github.com/GNS3/ubridge/releases/tag/v${version}";
-    license = licenses.gpl3Plus;
-    mainProgram = "ubridge";
-    maintainers = with maintainers; [ primeos ];
-    platforms = platforms.linux ++ platforms.darwin;
-  };
-}