Commit 42a0ba41 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

aiodnsbrute: add changelog to meta

parent 710635f6
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -14,8 +14,8 @@ buildPythonApplication rec {
  src = fetchFromGitHub {
    owner = "blark";
    repo = pname;
    rev = "v${version}";
    sha256 = "sha256-cEpk71VoQJZfKeAZummkk7yjtXKSMndgo0VleYiMlWE=";
    rev = "refs/tags/v${version}";
    hash = "sha256-cEpk71VoQJZfKeAZummkk7yjtXKSMndgo0VleYiMlWE=";
  };

  # https://github.com/blark/aiodnsbrute/pull/8
@@ -33,12 +33,14 @@ buildPythonApplication rec {
  # no tests present
  doCheck = false;

  pythonImportsCheck = [ "aiodnsbrute.cli" ];
  pythonImportsCheck = [
    "aiodnsbrute.cli"
  ];

  meta = with lib; {
    description = "DNS brute force utility";
    homepage = "https://github.com/blark/aiodnsbrute";
    # https://github.com/blark/aiodnsbrute/issues/5
    changelog = "https://github.com/blark/aiodnsbrute/releases/tag/v${version}";
    license = with licenses; [ gpl3Only ];
    maintainers = with maintainers; [ fab ];
  };