mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-14 21:18:50 +00:00
lil-pwny: init at 2.0.0
This commit is contained in:
parent
a34d3c15d9
commit
87dfe938f8
32
pkgs/tools/security/lil-pwny/default.nix
Normal file
32
pkgs/tools/security/lil-pwny/default.nix
Normal file
@ -0,0 +1,32 @@
|
||||
{ lib
|
||||
, python3
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "lil-pwny";
|
||||
version = "2.0.0";
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "PaperMtn";
|
||||
repo = "lil-pwny";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-EE6+PQTmvAv5EvxI9QR/dQcPby13BBk66KSc7XDNAZA=";
|
||||
};
|
||||
|
||||
# Project has no test
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"lil_pwny"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Offline auditing of Active Directory passwords";
|
||||
homepage = "https://github.com/PaperMtn/lil-pwny";
|
||||
changelog = "https://github.com/PaperMtn/lil-pwny/blob/${version}/CHANGELOG.md";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -2850,6 +2850,8 @@ with pkgs;
|
||||
|
||||
lifecycled = callPackage ../tools/misc/lifecycled { };
|
||||
|
||||
lil-pwny = callPackage ../tools/security/lil-pwny { };
|
||||
|
||||
lilo = callPackage ../tools/misc/lilo { };
|
||||
|
||||
logseq = callPackage ../applications/misc/logseq { };
|
||||
|
Loading…
Reference in New Issue
Block a user