mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-22 12:04:40 +00:00
Merge pull request #318597 from fabaff/krbjack-source
krbjack: source is tagged
This commit is contained in:
commit
12f2be337a
@ -5,13 +5,13 @@
|
|||||||
|
|
||||||
python3.pkgs.buildPythonApplication rec {
|
python3.pkgs.buildPythonApplication rec {
|
||||||
pname = "krbjack";
|
pname = "krbjack";
|
||||||
version = "0-unstable-2024-02-08";
|
version = "1.2.0";
|
||||||
pyproject = true;
|
pyproject = true;
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "almandin";
|
owner = "almandin";
|
||||||
repo = "krbjack";
|
repo = "krbjack";
|
||||||
rev = "0abaf7039c11fe735120c44a9420a311b42f7551";
|
rev = "refs/tags/${version}";
|
||||||
hash = "sha256-rvK0I8WlXqJtau9f+6ximfzYCjX21dPIyDN56IMI0gE=";
|
hash = "sha256-rvK0I8WlXqJtau9f+6ximfzYCjX21dPIyDN56IMI0gE=";
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -19,12 +19,13 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
"impacket"
|
"impacket"
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeBuildInputs = with python3.pkgs; [
|
build-system = with python3.pkgs; [
|
||||||
poetry-core
|
poetry-core
|
||||||
pythonRelaxDepsHook
|
|
||||||
];
|
];
|
||||||
|
|
||||||
propagatedBuildInputs = with python3.pkgs; [
|
nativeBuildInputs = with python3.pkgs; [ pythonRelaxDepsHook ];
|
||||||
|
|
||||||
|
dependencies = with python3.pkgs; [
|
||||||
colorama
|
colorama
|
||||||
dnspython
|
dnspython
|
||||||
impacket
|
impacket
|
||||||
@ -41,6 +42,7 @@ python3.pkgs.buildPythonApplication rec {
|
|||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Kerberos AP-REQ hijacking tool with DNS unsecure updates abuse";
|
description = "Kerberos AP-REQ hijacking tool with DNS unsecure updates abuse";
|
||||||
homepage = "https://github.com/almandin/krbjack";
|
homepage = "https://github.com/almandin/krbjack";
|
||||||
|
changelog = "https://github.com/almandin/krbjack/releases/tag/${version}}";
|
||||||
license = licenses.beerware;
|
license = licenses.beerware;
|
||||||
maintainers = with maintainers; [ fab ];
|
maintainers = with maintainers; [ fab ];
|
||||||
mainProgram = "krbjack";
|
mainProgram = "krbjack";
|
||||||
|
Loading…
Reference in New Issue
Block a user