mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 22:45:08 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
47 lines
1005 B
Nix
47 lines
1005 B
Nix
{ lib
|
|
, python3
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "msldapdump";
|
|
version = "unstable-2023-06-12";
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dievus";
|
|
repo = "msLDAPDump";
|
|
rev = "bdffe66be20ff844f55f69fd6d842d7f75f66f2d";
|
|
hash = "sha256-qH4AaebrTKYxxjXawllxgiG9fVm03zmTRv/HAyNpewg=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
colorama
|
|
ldap3
|
|
];
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -vD msLDAPDump.py $out/bin/msLDAPDump.py
|
|
|
|
makeWrapper ${python3.interpreter} $out/bin/msldapdump \
|
|
--set PYTHONPATH "$PYTHONPATH:$out/bin/msLDAPDump.py" \
|
|
--add-flags "-O $out/bin/msLDAPDump.py"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
# Project has no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "LDAP enumeration tool";
|
|
homepage = "https://github.com/dievus/msLDAPDump";
|
|
license = licenses.agpl3Only;
|
|
maintainers = with maintainers; [ fab ];
|
|
};
|
|
}
|