mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
dnsviz: init at 0.9.2
This commit is contained in:
parent
000387627d
commit
288f4a6173
3 changed files with 71 additions and 0 deletions
51
pkgs/tools/networking/dnsviz/default.nix
Normal file
51
pkgs/tools/networking/dnsviz/default.nix
Normal file
|
@ -0,0 +1,51 @@
|
|||
{ lib
|
||||
, buildPythonApplication
|
||||
, fetchFromGitHub
|
||||
, dnspython
|
||||
, m2crypto
|
||||
, pygraphviz
|
||||
}:
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "dnsviz";
|
||||
version = "0.9.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "dnsviz";
|
||||
repo = "dnsviz";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-tIxjlNtncZJSdfQelIR9fTohBDkyC0+YwEcs2gNfKec=";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# override DNSVIZ_INSTALL_PREFIX with $out
|
||||
./fix-path.patch
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
dnspython
|
||||
m2crypto
|
||||
pygraphviz
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace dnsviz/config.py.in --replace '@out@' $out
|
||||
'';
|
||||
|
||||
# Tests require network connection and /etc/resolv.conf
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "dnsviz" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Tool suite for analyzing and visualizing DNS and DNSSEC behavior";
|
||||
longDescription = ''
|
||||
DNSViz is a tool suite for analysis and visualization of Domain Name System (DNS) behavior,
|
||||
including its security extensions (DNSSEC).
|
||||
|
||||
This tool suite powers the Web-based analysis available at https://dnsviz.net/
|
||||
'';
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ jojosch ];
|
||||
};
|
||||
}
|
18
pkgs/tools/networking/dnsviz/fix-path.patch
Normal file
18
pkgs/tools/networking/dnsviz/fix-path.patch
Normal file
|
@ -0,0 +1,18 @@
|
|||
diff --git a/dnsviz/config.py.in b/dnsviz/config.py.in
|
||||
index 373fde2..007f0f1 100644
|
||||
--- a/dnsviz/config.py.in
|
||||
+++ b/dnsviz/config.py.in
|
||||
@@ -26,12 +26,7 @@ from __future__ import unicode_literals
|
||||
import os
|
||||
import sys
|
||||
|
||||
-_prefix = '__DNSVIZ_INSTALL_PREFIX__'
|
||||
-if (hasattr(sys, 'real_prefix') or hasattr(sys, 'base_prefix')) and \
|
||||
- not _prefix:
|
||||
- DNSVIZ_INSTALL_PREFIX = sys.prefix
|
||||
-else:
|
||||
- DNSVIZ_INSTALL_PREFIX = _prefix
|
||||
+DNSVIZ_INSTALL_PREFIX = "@out@"
|
||||
DNSVIZ_SHARE_PATH = os.path.join(DNSVIZ_INSTALL_PREFIX, 'share', 'dnsviz')
|
||||
JQUERY_PATH = __JQUERY_PATH__
|
||||
JQUERY_UI_PATH = __JQUERY_UI_PATH__
|
|
@ -3663,6 +3663,8 @@ in
|
|||
|
||||
dnstop = callPackage ../tools/networking/dnstop { };
|
||||
|
||||
dnsviz = python3Packages.callPackage ../tools/networking/dnsviz { };
|
||||
|
||||
dnsx = callPackage ../tools/security/dnsx { };
|
||||
|
||||
dhcp = callPackage ../tools/networking/dhcp { };
|
||||
|
|
Loading…
Reference in a new issue