Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

36 lines
818 B
Nix

{
lib,
stdenv,
fetchFromGitHub,
ruby,
}:
stdenv.mkDerivation {
pname = "username-anarchy";
version = "0.5";
src = fetchFromGitHub {
rev = "d5e653f0ab31d8d3fff79b2986f6ef9624d80fba";
owner = "urbanadventurer";
repo = "username-anarchy";
hash = "sha256-1he1FzNc6y7jm/UwedG81z5QGehh2qsd1QkAsIXwrag=";
};
buildInputs = [ ruby ];
preInstall = ''
mkdir -p $out/bin
install -Dm 555 format-plugins.rb $out/bin/
install -Dm 555 username-anarchy $out/bin/
'';
meta = with lib; {
homepage = "https://github.com/urbanadventurer/username-anarchy/";
description = "Username generator tool for penetration testing";
license = licenses.mit;
maintainers = [ maintainers.akechishiro ];
platforms = platforms.unix;
mainProgram = "username-anarchy";
};
}