about summary refs log tree commit diff
path: root/pkgs/by-name
diff options
context:
space:
mode:
authorD3vil0p3r <vozaanthony@gmail.com>2024-02-17 13:41:12 +0100
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2024-04-21 17:26:04 +0000
commit106d74cccb2c9520488ea2406165d593db180d25 (patch)
tree9b02c0e6bb8d126e42682469461ceb3d13a05dff /pkgs/by-name
parentcb4064c4d68dc34d258ba39a1a96d5038be9f937 (diff)
lbd: init at 0-unstable-2024-02-17
(cherry picked from commit 4f38e4136c2c779732f570c2a94da19f1cd14faa)
Diffstat (limited to 'pkgs/by-name')
-rw-r--r--pkgs/by-name/lb/lbd/package.nix48
1 files changed, 48 insertions, 0 deletions
diff --git a/pkgs/by-name/lb/lbd/package.nix b/pkgs/by-name/lb/lbd/package.nix
new file mode 100644
index 0000000000000..f84ed553ad25b
--- /dev/null
+++ b/pkgs/by-name/lb/lbd/package.nix
@@ -0,0 +1,48 @@
+{ lib
+, stdenvNoCC
+, fetchFromGitHub
+, makeWrapper
+, bash
+, coreutils
+, diffutils
+, gawk
+, gnugrep
+, gnused
+, host
+, netcat-openbsd
+}:
+
+stdenvNoCC.mkDerivation {
+  pname = "lbd";
+  version = "0-unstable-2024-02-17";
+
+  src = fetchFromGitHub {
+    owner = "D3vil0p3r";
+    repo = "lbd";
+    rev = "73baaaecddcd834d43d79f50f0808b779c9a97c3";
+    hash = "sha256-NHY3NoPigsmfRjOx9Lt3/fGsyeq1/bzKHIXMDBJiI6c=";
+  };
+
+  nativeBuildInputs = [
+    makeWrapper
+  ];
+
+  installPhase = ''
+    runHook preInstall
+    mkdir -p $out/{bin,share/lbd}
+    cp lbd $out/share/lbd/
+    makeWrapper ${lib.getExe bash} $out/bin/lbd \
+      --prefix PATH : "${lib.makeBinPath [ coreutils diffutils gawk gnugrep gnused host netcat-openbsd ]}" \
+      --add-flags "$out/share/lbd/lbd"
+    runHook postInstall
+  '';
+
+  meta = with lib; {
+    description = "Detect if a domain uses DNS and/or HTTP Load-Balancing";
+    mainProgram = "lbd";
+    homepage = "https://github.com/D3vil0p3r/lbd";
+    maintainers = with maintainers; [ d3vil0p3r ];
+    platforms = platforms.unix;
+    license = licenses.gpl2Plus;
+  };
+}